XmlTextWriter.WriteBinHex(Byte[], Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以 Binhex 編碼指定的二進位位元組,並寫出產生的文字。
public:
override void WriteBinHex(cli::array <System::Byte> ^ buffer, int index, int count);
public override void WriteBinHex (byte[] buffer, int index, int count);
override this.WriteBinHex : byte[] * int * int -> unit
Public Overrides Sub WriteBinHex (buffer As Byte(), index As Integer, count As Integer)
參數
- buffer
- Byte[]
要編碼的位元組陣列。
- index
- Int32
緩衝區中的位置指示要寫入的位元組開頭。
- count
- Int32
要寫入的位元組數。
例外狀況
buffer
為 null
。
緩衝區長度減去 index
會小於 count
。
index
或 count
小於零。
備註
注意
從 .NET Framework 2.0 開始,建議您使用 XmlWriter.Create 方法和 XmlWriterSettings 類別來建立 XmlWriter 實例,以利用新功能。