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

◆ ReadElementContentAsBase64()

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

Reimplemented from System.Xml.XmlReader.

Definition at line 549 of file XmlValidatingReaderImpl.cs.

550 {
551 if (ReadState != ReadState.Interactive)
552 {
553 return 0;
554 }
555 if (_parsingFunction != ParsingFunction.InReadBinaryContent)
556 {
558 }
559 _parsingFunction = ParsingFunction.Read;
561 _parsingFunction = ParsingFunction.InReadBinaryContent;
562 return result;
563 }
static ReadContentAsBinaryHelper CreateOrReset(ReadContentAsBinaryHelper helper, XmlReader reader)
int ReadElementContentAsBase64(byte[] buffer, int index, int count)
ReadContentAsBinaryHelper _readBinaryHelper

References System.Xml.XmlValidatingReaderImpl._outerReader, System.Xml.XmlValidatingReaderImpl._parsingFunction, System.Xml.XmlValidatingReaderImpl._readBinaryHelper, System.buffer, System.count, System.Xml.ReadContentAsBinaryHelper.CreateOrReset(), System.index, and System.Xml.ReadContentAsBinaryHelper.ReadElementContentAsBase64().

Referenced by System.Xml.XmlValidatingReader.ReadElementContentAsBase64().