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

◆ ReadContentAsDecimal()

override decimal System.Xml.XmlSubtreeReader.ReadContentAsDecimal ( )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 691 of file XmlSubtreeReader.cs.

692 {
693 try
694 {
695 InitReadContentAsType("ReadContentAsDecimal");
696 decimal result = reader.ReadContentAsDecimal();
698 return result;
699 }
700 catch
701 {
702 _state = State.Error;
703 throw;
704 }
705 }
virtual decimal ReadContentAsDecimal()
Definition XmlReader.cs:238
void InitReadContentAsType(string methodName)

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