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

◆ ReadUInt31()

int System.Xml.XmlBufferReader.ReadUInt31 ( )
inline

Definition at line 388 of file XmlBufferReader.cs.

389 {
390 int num = ReadInt32();
391 if (num < 0)
392 {
393 XmlExceptionHelper.ThrowInvalidBinaryFormat(_reader);
394 }
395 return num;
396 }
readonly XmlDictionaryReader _reader

References System.Xml.XmlBufferReader._reader, System.Xml.XmlBufferReader.ReadInt32(), and System.Xml.XmlExceptionHelper.ThrowInvalidBinaryFormat().

Referenced by System.Xml.XmlBufferReader.ReadValue().