System.Xml.Schema.XmlSchemaCollection.this C# (CSharp) 메소드

this() 공개 메소드

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