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

◆ IsNamespaceSubsetOf()

bool System.Xml.Xsl.XmlQualifiedNameTest.IsNamespaceSubsetOf ( XmlQualifiedNameTest other)
inlineprivate

Definition at line 41 of file XmlQualifiedNameTest.cs.

42 {
43 if (!other.IsNamespaceWildcard && (_exclude != other._exclude || !(base.Namespace == other.Namespace)))
44 {
45 if (other._exclude && !_exclude)
46 {
47 return base.Namespace != other.Namespace;
48 }
49 return false;
50 }
51 return true;
52 }

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

Referenced by System.Xml.Xsl.XmlQualifiedNameTest.HasIntersection(), and System.Xml.Xsl.XmlQualifiedNameTest.IsSubsetOf().