mscorlib(4.0.0.0) API with additions
XmlSchemaImport.cs
2 
3 namespace System.Xml.Schema
4 {
7  {
8  private string ns;
9 
10  private XmlSchemaAnnotation annotation;
11 
14  [XmlAttribute("namespace", DataType = "anyURI")]
15  public string Namespace
16  {
17  get
18  {
19  return ns;
20  }
21  set
22  {
23  ns = value;
24  }
25  }
26 
29  [XmlElement("annotation", typeof(XmlSchemaAnnotation))]
31  {
32  get
33  {
34  return annotation;
35  }
36  set
37  {
38  annotation = value;
39  }
40  }
41 
43  public XmlSchemaImport()
44  {
45  base.Compositor = Compositor.Import;
46  }
47 
48  internal override void AddAnnotation(XmlSchemaAnnotation annotation)
49  {
50  this.annotation = annotation;
51  }
52  }
53 }
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
XmlSchemaImport()
Initializes a new instance of the T:System.Xml.Schema.XmlSchemaImport class.
XmlSchemaAnnotation Annotation
Gets or sets the annotation property.
Represents the import element from XML Schema as specified by the World Wide Web Consortium (W3C)....
string Namespace
Gets or sets the target namespace for the imported schema as a Uniform Resource Identifier (URI) refe...
Represents an element.
Definition: XmlElement.cs:7
An abstract class. Provides information about the included schema.
Represents the World Wide Web Consortium (W3C) annotation element.