System.Xml.Schema.XmlSchemaAnyAttribute.IsSubset C# (CSharp) Method

IsSubset() static private method

static private IsSubset ( XmlSchemaAnyAttribute sub, XmlSchemaAnyAttribute super ) : bool
sub XmlSchemaAnyAttribute
super XmlSchemaAnyAttribute
return bool
        internal static bool IsSubset(XmlSchemaAnyAttribute sub, XmlSchemaAnyAttribute super) {
            return NamespaceList.IsSubset(sub.NamespaceList, super.NamespaceList);
        }