mscorlib(4.0.0.0) API with additions
XmlSchemaKeyref.cs
2 
3 namespace System.Xml.Schema
4 {
7  {
9 
12  [XmlAttribute("refer")]
13  public XmlQualifiedName Refer
14  {
15  get
16  {
17  return refer;
18  }
19  set
20  {
21  refer = ((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
This class represents the keyref element from XMLSchema as specified by the World Wide Web Consortium...
Represents an XML qualified name.
static readonly XmlQualifiedName Empty
Provides an empty T:System.Xml.XmlQualifiedName.
XmlQualifiedName? Refer
Gets or sets the name of the key that this constraint refers to in another simple or complex type.
Class for the identity constraints: key, keyref, and unique elements.