System.Xml.XmlReader.ReadContentAsBinHex C# (CSharp) Method

ReadContentAsBinHex() public method

public ReadContentAsBinHex ( byte buffer, int index, int count ) : int
buffer byte
index int
count int
return int
        public virtual int ReadContentAsBinHex(byte[] buffer, int index, int count)
        {
            throw new NotSupportedException(SR.Format(SR.Xml_ReadBinaryContentNotSupported, "ReadContentAsBinHex"));
        }

Usage Example

 public override int ReadContentAsBinHex(byte[] buffer, int index, int count)
 {
     CheckAsync();
     return(_coreReader.ReadContentAsBinHex(buffer, index, count));
 }