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

◆ Name

string MS.Internal.Xml.Cache.XPathNode.Name
get

Definition at line 27 of file XPathNode.cs.

28 {
29 get
30 {
31 if (Prefix.Length == 0)
32 {
33 return LocalName;
34 }
35 return Prefix + ":" + LocalName;
36 }
37 }