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

GetSchemaInfo() private method

private GetSchemaInfo ( string ns ) : SchemaInfo
ns string
return SchemaInfo
        internal SchemaInfo GetSchemaInfo(string ns)
        {
            XmlSchemaCollectionNode node = (XmlSchemaCollectionNode)_collection[(ns != null) ? ns : string.Empty];
            return (node != null) ? node.SchemaInfo : null;
        }