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

GetAttribute() public méthode

public GetAttribute ( XmlQualifiedName qname ) : XmlSchemaAttribute
qname System.Xml.XmlQualifiedName
Résultat XmlSchemaAttribute
        public XmlSchemaAttribute GetAttribute(XmlQualifiedName qname) {
            SchemaAttDef attdef = (SchemaAttDef)attributeDecls[qname];
            if (attdef != null) {
                return attdef.SchemaAttribute;
            }
            return null;
        }