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

◆ ReadContentAsDouble()

override double System.Xml.XmlSubtreeReader.ReadContentAsDouble ( )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 659 of file XmlSubtreeReader.cs.

660 {
661 try
662 {
663 InitReadContentAsType("ReadContentAsDouble");
664 double result = reader.ReadContentAsDouble();
666 return result;
667 }
668 catch
669 {
670 _state = State.Error;
671 throw;
672 }
673 }
virtual double ReadContentAsDouble()
Definition XmlReader.cs:206
void InitReadContentAsType(string methodName)

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