System.Xml.Schema.SchemaInfo.GetElement C# (CSharp) Method

GetElement() public method

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