mscorlib(4.0.0.0) API with additions
XmlSchemaAttributeGroupRef.cs
2 
3 namespace System.Xml.Schema
4 {
7  {
8  private XmlQualifiedName refName = XmlQualifiedName.Empty;
9 
12  [XmlAttribute("ref")]
14  {
15  get
16  {
17  return refName;
18  }
19  set
20  {
21  refName = ((value == null) ? XmlQualifiedName.Empty : value);
22  }
23  }
24  }
25 }
Definition: __Canon.cs:3
Represents an attribute. Valid and default values for the attribute are defined in a document type de...
Definition: XmlAttribute.cs:7
The base class for any element that can contain annotation elements.
Represents an XML qualified name.
static readonly XmlQualifiedName Empty
Provides an empty T:System.Xml.XmlQualifiedName.
XmlQualifiedName? RefName
Gets or sets the name of the referenced attributeGroup element.
Represents the attributeGroup element with the ref attribute from the XML Schema as specified by the ...