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

◆ QName

string MS.Internal.Xml.XPath.ExtensionQuery.QName
getprotectedinherited

Definition at line 45 of file ExtensionQuery.cs.

46 {
47 get
48 {
49 if (prefix.Length == 0)
50 {
51 return name;
52 }
53 return prefix + ":" + name;
54 }
55 }