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

this() 공개 메소드

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