System.Xml.Xsl.XmlQualifiedNameTest.IsSubsetOf C# (CSharp) 메소드

IsSubsetOf() 공개 메소드

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