System.Xml.Schema.XmlSchemaCollection.Contains C# (CSharp) Method

Contains() public method

public Contains ( XmlSchema schema ) : bool
schema XmlSchema
return bool
        public bool Contains(XmlSchema schema)
        {
            if (schema == null)
            {
                throw new ArgumentNullException(nameof(schema));
            }
            return this[schema.TargetNamespace] != null;
        }

Same methods

XmlSchemaCollection::Contains ( string ns ) : bool