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

◆ Prefix

override string System.Xml.DocumentXPathNavigator.Prefix
get

Definition at line 70 of file DocumentXPathNavigator.cs.

71 {
72 get
73 {
74 if (_source is XmlAttribute { IsNamespace: not false })
75 {
76 return string.Empty;
77 }
78 return _source.Prefix;
79 }
80 }
virtual string Prefix
Definition XmlNode.cs:142