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

◆ ReadElementContentAsBase64()

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

Reimplemented from System.Xml.XmlReader.

Definition at line 856 of file XPathNavigatorReader.cs.

857 {
858 if (ReadState != ReadState.Interactive)
859 {
860 return 0;
861 }
862 if (_state != State.InReadBinary)
863 {
864 _readBinaryHelper = ReadContentAsBinaryHelper.CreateOrReset(_readBinaryHelper, this);
866 }
870 _state = State.InReadBinary;
871 return result;
872 }
static ReadContentAsBinaryHelper CreateOrReset(ReadContentAsBinaryHelper helper, XmlReader reader)
int ReadElementContentAsBase64(byte[] buffer, int index, int count)
ReadContentAsBinaryHelper _readBinaryHelper

References System.Xml.XPath.XPathNavigatorReader._readBinaryHelper, System.Xml.XPath.XPathNavigatorReader._savedState, System.Xml.XPath.XPathNavigatorReader._state, System.buffer, System.count, System.Xml.ReadContentAsBinaryHelper.CreateOrReset(), System.index, and System.Xml.ReadContentAsBinaryHelper.ReadElementContentAsBase64().