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
小于零。
WriteState 为 Closed。
注解
备注
从 .NET Framework 2.0 开始,我们建议使用XmlWriter.Create方法和XmlWriterSettings类来创建XmlWriter实例,以利用新功能。