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

◆ ReadContentAsBase64()

override int System.Xml.XsdValidatingReader.ReadContentAsBase64 ( byte[] buffer,
int index,
int count )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 1398 of file XsdValidatingReader.cs.

1399 {
1400 if (ReadState != ReadState.Interactive)
1401 {
1402 return 0;
1403 }
1404 if (_validationState != ValidatingReaderState.OnReadBinaryContent)
1405 {
1406 _readBinaryHelper = ReadContentAsBinaryHelper.CreateOrReset(_readBinaryHelper, this);
1408 }
1412 _validationState = ValidatingReaderState.OnReadBinaryContent;
1413 return result;
1414 }
static ReadContentAsBinaryHelper CreateOrReset(ReadContentAsBinaryHelper helper, XmlReader reader)
int ReadContentAsBase64(byte[] buffer, int index, int count)
ReadContentAsBinaryHelper _readBinaryHelper
ValidatingReaderState _validationState

References System.Xml.XsdValidatingReader._readBinaryHelper, System.Xml.XsdValidatingReader._savedState, System.Xml.XsdValidatingReader._validationState, System.buffer, System.count, System.Xml.ReadContentAsBinaryHelper.CreateOrReset(), System.index, and System.Xml.ReadContentAsBinaryHelper.ReadContentAsBase64().