Terraria v1.4.4.9
Terraria source code documentation
|
Public Member Functions | |
bool | IsSubsetOf (XmlQualifiedNameTest other) |
bool | HasIntersection (XmlQualifiedNameTest other) |
override string | ToString () |
override int | GetHashCode () |
override bool | Equals ([NotNullWhen(true)] object? other) |
Static Public Member Functions | |
static XmlQualifiedNameTest | New (string name, string ns) |
static string | ToString (string name, string ns) |
static bool | operator== (XmlQualifiedName? a, XmlQualifiedName? b) |
static bool | operator!= (XmlQualifiedName? a, XmlQualifiedName? b) |
Static Public Attributes | |
static readonly XmlQualifiedName | Empty = new XmlQualifiedName(string.Empty) |
Package Functions | |
void | Init (string name, string ns) |
void | SetNamespace (string ns) |
void | Verify () |
void | Atomize (XmlNameTable nameTable) |
XmlQualifiedName | Clone () |
Static Package Functions | |
static XmlQualifiedName | Parse (string s, IXmlNamespaceResolver nsmgr, out string prefix) |
Properties | |
static XmlQualifiedNameTest | Wildcard [get] |
bool | IsWildcard [get] |
bool | IsNameWildcard [get] |
bool | IsNamespaceWildcard [get] |
string | Namespace [get] |
string | Name [get] |
bool | IsEmpty [get] |
Private Member Functions | |
XmlQualifiedNameTest (string name, string ns, bool exclude) | |
bool | IsNameSubsetOf (XmlQualifiedNameTest other) |
bool | IsNamespaceSubsetOf (XmlQualifiedNameTest other) |
Private Attributes | |
readonly bool | _exclude |
string | _name |
string | _ns |
int | _hash |
Static Private Attributes | |
static readonly XmlQualifiedNameTest | s_wc = New("*", "*") |
Definition at line 3 of file XmlQualifiedNameTest.cs.