XmlTextWriter.WriteBinHex(Byte[], Int32, Int32) 方法

定义

将指定的二进制字节编码为 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

要写入的字节数。

例外

buffernull

缓冲区长度减去 index 小于 count

indexcount 小于零。

注解

备注

从 .NET Framework 2.0 开始,我们建议使用XmlWriter.Create方法和XmlWriterSettings类来创建XmlWriter实例,以利用新功能。

适用于