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

this() public method

public this ( string ns ) : XmlSchema
ns string
return XmlSchema
        public XmlSchema this[string ns]
        {
            get
            {
                XmlSchemaCollectionNode node = (XmlSchemaCollectionNode)_collection[(ns != null) ? ns : string.Empty];
                return (node != null) ? node.Schema : null;
            }
        }