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

◆ ReadContentAsBoolean()

override bool System.Xml.XmlSubtreeReader.ReadContentAsBoolean ( )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 627 of file XmlSubtreeReader.cs.

628 {
629 try
630 {
631 InitReadContentAsType("ReadContentAsBoolean");
632 bool result = reader.ReadContentAsBoolean();
634 return result;
635 }
636 catch
637 {
638 _state = State.Error;
639 throw;
640 }
641 }
virtual bool ReadContentAsBoolean()
Definition XmlReader.cs:158
void InitReadContentAsType(string methodName)

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