mscorlib(4.0.0.0) API with additions
XmlSchemaAll.cs
2 
3 namespace System.Xml.Schema
4 {
7  {
9 
12  [XmlElement("element", typeof(XmlSchemaElement))]
13  public override XmlSchemaObjectCollection Items
14  {
15  get
16  {
17  return items;
18  }
19  }
20 
21  internal override bool IsEmpty
22  {
23  get
24  {
25  if (!base.IsEmpty)
26  {
27  return items.Count == 0;
28  }
29  return true;
30  }
31  }
32 
33  internal override void SetItems(XmlSchemaObjectCollection newItems)
34  {
35  items = newItems;
36  }
37  }
38 }
A collection of T:System.Xml.Schema.XmlSchemaObjects.
Definition: __Canon.cs:3
An abstract class for T:System.Xml.Schema.XmlSchemaAll, T:System.Xml.Schema.XmlSchemaChoice,...
override XmlSchemaObjectCollection Items
Gets the collection of XmlSchemaElement elements contained within the all compositor.
Definition: XmlSchemaAll.cs:14
Represents an element.
Definition: XmlElement.cs:7
Represents the World Wide Web Consortium (W3C) all element (compositor).
Definition: XmlSchemaAll.cs:6
int Count
Gets the number of elements contained in the T:System.Collections.CollectionBase instance....
Represents the element element from XML Schema as specified by the World Wide Web Consortium (W3C)....