System.Xml.Schema.SchemaInfo.GetAttribute C# (CSharp) 메소드

GetAttribute() 공개 메소드

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