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

◆ ReadContentAsFloat()

override float System.Xml.XmlSubtreeReader.ReadContentAsFloat ( )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 675 of file XmlSubtreeReader.cs.

676 {
677 try
678 {
679 InitReadContentAsType("ReadContentAsFloat");
680 float result = reader.ReadContentAsFloat();
682 return result;
683 }
684 catch
685 {
686 _state = State.Error;
687 throw;
688 }
689 }
virtual float ReadContentAsFloat()
Definition XmlReader.cs:222
void InitReadContentAsType(string methodName)

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