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

◆ IsReading

bool System.Xml.XPath.XPathNavigatorReader.IsReading
getprotected

Definition at line 59 of file XPathNavigatorReader.cs.

60 {
61 get
62 {
63 if (_state > State.Initial)
64 {
65 return _state < State.EOF;
66 }
67 return false;
68 }
69 }