System.Xml.Schema.SchemaInfo.GetElement C# (CSharp) Méthode

GetElement() public méthode

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