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

◆ ReadContentAsInt()

override int System.Xml.XmlSubtreeReader.ReadContentAsInt ( )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 707 of file XmlSubtreeReader.cs.

708 {
709 try
710 {
711 InitReadContentAsType("ReadContentAsInt");
712 int result = reader.ReadContentAsInt();
714 return result;
715 }
716 catch
717 {
718 _state = State.Error;
719 throw;
720 }
721 }
virtual int ReadContentAsInt()
Definition XmlReader.cs:254
void InitReadContentAsType(string methodName)

References System.Xml.XmlSubtreeReader._state, System.Xml.XmlSubtreeReader.FinishReadContentAsType(), System.Xml.XmlSubtreeReader.InitReadContentAsType(), System.Xml.XmlReader.ReadContentAsInt(), and System.Xml.XmlWrappingReader.reader.