System.Xml.Schema.SchemaInfo.GetElement C# (CSharp) 메소드

GetElement() 공개 메소드

public GetElement ( XmlQualifiedName qname ) : XmlSchemaElement
qname System.Xml.XmlQualifiedName
리턴 XmlSchemaElement
        public XmlSchemaElement GetElement(XmlQualifiedName qname) {
            SchemaElementDecl ed = GetElementDecl(qname);
            if (ed != null) {
                return ed.SchemaElement;
            }
            return null;
        }