Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ReadBinHex()

int System.Xml.XmlTextReaderImpl.ReadBinHex ( byte[] array,
int offset,
int len )
inlinepackage

Definition at line 2729 of file XmlTextReaderImpl.cs.

2730 {
2731 if (_parsingFunction == ParsingFunction.InIncrementalRead)
2732 {
2734 {
2736 }
2737 return IncrementalRead(array, offset, len);
2738 }
2739 if (_curNode.type != XmlNodeType.Element)
2740 {
2741 return 0;
2742 }
2744 {
2746 return 0;
2747 }
2748 if (_binHexDecoder == null)
2749 {
2750 _binHexDecoder = new BinHexDecoder();
2751 }
2753 return IncrementalRead(array, offset, len);
2754 }
void InitIncrementalRead(IncrementalReadDecoder decoder)
IncrementalReadDecoder _incReadDecoder

References System.Xml.XmlTextReaderImpl._binHexDecoder, System.Xml.XmlTextReaderImpl._curNode, System.Xml.XmlTextReaderImpl._incReadDecoder, System.Xml.XmlTextReaderImpl._outerReader, System.Xml.XmlTextReaderImpl._parsingFunction, System.array, System.Xml.XmlTextReaderImpl.IncrementalRead(), System.Xml.XmlTextReaderImpl.InitBinHexDecoder(), System.Xml.XmlTextReaderImpl.InitIncrementalRead(), System.Xml.XmlTextReaderImpl.NodeData.IsEmptyElement, System.len, System.offset, System.Xml.XmlReader.Read(), and System.Xml.XmlTextReaderImpl.NodeData.type.

Referenced by System.Xml.XmlTextReader.ReadBinHex().