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

this() public method

public this ( XmlQualifiedName name ) : XmlSchemaObject
name System.Xml.XmlQualifiedName
return XmlSchemaObject
        public XmlSchemaObject this[XmlQualifiedName name] {
            get { 
                XmlSchemaObject value;
                if (table.TryGetValue(name, out value)) {
                    return value;
                }
                return null;
            }
        }