Noemax FastInfoset.NET Report an issue | Discuss in forums
XmlFastInfosetReader.ReadBinHex() Method
See Also 
Noemax.FastInfoset Assembly > Noemax.FastInfoset Namespace > XmlFastInfosetReader Class : ReadBinHex Method



Reads a hexadecimal value from the current position in the element content and decodes it into an array of bytes.


Namespace: Noemax.FastInfoset
Assembly: Noemax.FastInfoset (in Noemax.FastInfoset.dll)

Syntax

Visual Basic (Declaration) 
Public Function ReadBinHex() As Byte()
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim value() As Byte
 
value = instance.ReadBinHex()
C# 
public byte[] ReadBinHex()
C++/CLI 
public:
array<byte>^ ReadBinHex(); 

Return Value

An array of bytes read.

Remarks

If the node at the current position is Fast Infoset binary encoded BinHex bytes, the reader returns these bytes without transformation.

If the current node is text, the reader performs BinHex decoding and returns the decoded bytes.

Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0

See Also