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

GetType() public méthode

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