XmlSchemaAttributeGroup | System.Xml.Schema (system.xml.dll) class |
public class XmlSchemaAttributeGroup : XmlSchemaAnnotated {
// Public Constructors
public XmlSchemaAttributeGroup( );
// Public Instance Properties
public XmlSchemaAnyAttribute AnyAttribute{set; get; }
public XmlSchemaObjectCollection Attributes{get; }
public string Name{set; get; }
public XmlSchemaAttributeGroup RedefinedAttributeGroup{get; }
} | |
This type represents an
xs:attributeGroup element, as a global definition.
It can only be included within a XmlSchema
element. Its AnyAttribute property returns the
XmlSchemaAnyAttribute child element if present;
otherwise the Attributes property can be used to
access an XmlSchemaObjectCollection of its child
XmlSchemaAttribute and
XmlSchemaAttributeGroupRef elements.
Hierarchy
System.Object XmlSchemaObject
XmlSchemaAnnotated
XmlSchemaAttributeGroup
|