XmlDictionaryReader.ReadContentAsBinHex Method

Definition

Reads the content and returns the BinHex decoded binary bytes.

Overloads

ReadContentAsBinHex(Int32)

Reads the content and returns the BinHex decoded binary bytes.

ReadContentAsBinHex()

Reads the content and returns the BinHex decoded binary bytes.

ReadContentAsBinHex(Int32)

Reads the content and returns the BinHex decoded binary bytes.

protected:
 cli::array <System::Byte> ^ ReadContentAsBinHex(int maxByteArrayContentLength);
protected byte[] ReadContentAsBinHex (int maxByteArrayContentLength);
override this.ReadContentAsBinHex : int -> byte[]
Protected Function ReadContentAsBinHex (maxByteArrayContentLength As Integer) As Byte()

Parameters

maxByteArrayContentLength
Int32

The maximum array length.

Returns

Byte[]

A byte array that contains the BinHex decoded binary bytes.

Exceptions

The array size is greater than maxByteArrayContentLength.

Applies to

ReadContentAsBinHex()

Reads the content and returns the BinHex decoded binary bytes.

public:
 virtual cli::array <System::Byte> ^ ReadContentAsBinHex();
public virtual byte[] ReadContentAsBinHex ();
override this.ReadContentAsBinHex : unit -> byte[]
Public Overridable Function ReadContentAsBinHex () As Byte()

Returns

Byte[]

A byte array that contains the BinHex decoded binary bytes.

Exceptions

The array size is greater than Int32.MaxValue.

Remarks

The buffer allocated by this read operation is limited by the MaxArrayLength quota.

Applies to