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!

XmlWriter.WriteBinHex

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

[Visual Basic]
MustOverride Public Sub WriteBinHex( _
   ByVal buffer() As Byte, _
   ByVal index As Integer, _
   ByVal count As Integer _
)
[C#]
public abstract void WriteBinHex(
   byte[] buffer,
   int index,
   int count
);
[C++]
public: virtual void WriteBinHex(
   unsigned char* buffer[],
   int index,
   int count
) = 0;
[JScript]
public abstract 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

XmlWriter Class | XmlWriter Members | System.NewXml Namespace