| Visual Basic (Declaration) | |
|---|---|
Public Function ReadBinHex() As Byte() | |
| Visual Basic (Usage) | |
|---|---|
Dim instance As XmlFastInfosetReader Dim value() As Byte value = instance.ReadBinHex() | |
| C# | |
|---|---|
public byte[] ReadBinHex() | |
| Delphi | |
|---|---|
public function ReadBinHex(): array of Byte; | |
| JScript | |
|---|---|
public function ReadBinHex() : byte[]; | |
| Managed Extensions for C++ | |
|---|---|
public: byte[]* ReadBinHex(); | |
| C++/CLI | |
|---|---|
public: array<byte>^ ReadBinHex(); | |
Return Value
An array of bytes read.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.