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

Contains() public method

public Contains ( string ns ) : bool
ns string
return bool
        public bool Contains(string ns)
        {
            return _collection[(ns != null) ? ns : string.Empty] != null;
        }

Same methods

XmlSchemaCollection::Contains ( XmlSchema schema ) : bool