NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlTextWriter.WriteBinHex

Encodes the specified binary bytes as binhex and writes out the resulting text.

[Visual Basic]
Overrides Public Sub WriteBinHex( _
   ByVal buffer() As Byte, _
   ByVal index As Integer, _
   ByVal count As Integer _
)
[C#]
public override void WriteBinHex(
   byte[] buffer,
   int index,
   int count
);
[C++]
public: override void WriteBinHex(
   unsigned char* buffer[],
   int index,
   int count
);
[JScript]
public override function WriteBinHex(
   buffer : Byte[],
   index : int,
   count : int
);

Parameters

buffer
Byte array to encode.
index
The position within buffer indicating the start of the bytes to write.
count
The number of bytes to write.

See Also

XmlTextWriter Class | XmlTextWriter Members | System.NewXml Namespace