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

GetAttribute() public method

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