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

◆ IsEmptyElement

override bool System.Xml.DocumentXPathNavigator.IsEmptyElement
get

Definition at line 141 of file DocumentXPathNavigator.cs.

142 {
143 get
144 {
145 if (_source is XmlElement xmlElement)
146 {
147 return xmlElement.IsEmpty;
148 }
149 return false;
150 }
151 }