System.Xml.XmlTextReader.ReadBinHex C# (CSharp) Method

ReadBinHex() public method

public ReadBinHex ( byte array, int offset, int len ) : int
array byte
offset int
len int
return int
        public int ReadBinHex(byte[] array, int offset, int len)
        {
            return _impl.ReadBinHex(array, offset, len);
        }
        //

Usage Example

Example #1
0
 [MonoTODO]         // FIXME: Check how expanded entity is handled here.
 public int ReadBinHex(byte [] array, int offset, int len)
 {
     if (entity != null)
     {
         return(entity.ReadBinHex(array, offset, len));
     }
     else
     {
         return(source.ReadBinHex(array, offset, len));
     }
 }
All Usage Examples Of System.Xml.XmlTextReader::ReadBinHex