System.Xml.Xsl.XmlQualifiedNameTest.IsSubsetOf C# (CSharp) Method

IsSubsetOf() public method

True if this matches every QName other does
public IsSubsetOf ( XmlQualifiedNameTest other ) : bool
other XmlQualifiedNameTest
return bool
        public bool IsSubsetOf(XmlQualifiedNameTest other) {
            return IsNameSubsetOf(other) && IsNamespaceSubsetOf(other);
        }