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

◆ ReadElementContentAsBase64()

override int System.Xml.XmlNodeReader.ReadElementContentAsBase64 ( byte[] buffer,
int index,
int count )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 647 of file XmlNodeReader.cs.

648 {
649 if (_readState != ReadState.Interactive)
650 {
651 return 0;
652 }
653 if (!_bInReadBinary)
654 {
655 _readBinaryHelper = ReadContentAsBinaryHelper.CreateOrReset(_readBinaryHelper, this);
656 }
657 _bInReadBinary = false;
659 _bInReadBinary = true;
660 return result;
661 }
static ReadContentAsBinaryHelper CreateOrReset(ReadContentAsBinaryHelper helper, XmlReader reader)
int ReadElementContentAsBase64(byte[] buffer, int index, int count)
ReadContentAsBinaryHelper _readBinaryHelper

References System.Xml.XmlNodeReader._bInReadBinary, System.Xml.XmlNodeReader._readBinaryHelper, System.Xml.XmlNodeReader._readState, System.buffer, System.count, System.Xml.ReadContentAsBinaryHelper.CreateOrReset(), System.index, and System.Xml.ReadContentAsBinaryHelper.ReadElementContentAsBase64().