mscorlib(4.0.0.0) API with additions
XmlSchemaInclude.cs
2 
3 namespace System.Xml.Schema
4 {
7  {
8  private XmlSchemaAnnotation annotation;
9 
12  [XmlElement("annotation", typeof(XmlSchemaAnnotation))]
14  {
15  get
16  {
17  return annotation;
18  }
19  set
20  {
21  annotation = value;
22  }
23  }
24 
27  {
28  base.Compositor = Compositor.Include;
29  }
30 
31  internal override void AddAnnotation(XmlSchemaAnnotation annotation)
32  {
33  this.annotation = annotation;
34  }
35  }
36 }
XmlSchemaAnnotation Annotation
Gets or sets the annotation property.
Definition: __Canon.cs:3
Represents the include element from XML Schema as specified by the World Wide Web Consortium (W3C)....
Represents an element.
Definition: XmlElement.cs:7
XmlSchemaInclude()
Initializes a new instance of the T:System.Xml.Schema.XmlSchemaInclude class.
An abstract class. Provides information about the included schema.
Represents the World Wide Web Consortium (W3C) annotation element.