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

◆ ToString() [1/2]

override string System.Xml.Xsl.XmlQualifiedNameTest.ToString ( )
inline

Definition at line 76 of file XmlQualifiedNameTest.cs.

77 {
78 if ((object)this == Wildcard)
79 {
80 return "*";
81 }
82 if (base.Namespace.Length == 0)
83 {
84 return base.Name;
85 }
86 if ((object)base.Namespace == "*")
87 {
88 return "*:" + base.Name;
89 }
90 if (_exclude)
91 {
92 return "{~" + base.Namespace + "}:" + base.Name;
93 }
94 return "{" + base.Namespace + "}:" + base.Name;
95 }
static XmlQualifiedNameTest Wildcard

References System.Xml.Xsl.XmlQualifiedNameTest._exclude, System.Xml.Dictionary, and System.Xml.Xsl.XmlQualifiedNameTest.Wildcard.

Referenced by System.Xml.Xsl.XmlQueryType.NameAndType().