XmlSchemaObjectCollection::Add Method (XmlSchemaObject^)
Adds an XmlSchemaObject to the XmlSchemaObjectCollection.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- item
-
Type:
System.Xml.Schema::XmlSchemaObject^
The XmlSchemaObject.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero. -or- index is greater than Count. |
| InvalidCastException | The XmlSchemaObject parameter specified is not of type XmlSchemaExternal or its derived types XmlSchemaImport, XmlSchemaInclude, and XmlSchemaRedefine. |
If Count already equals the capacity, the capacity of list is doubled by automatically reallocating the internal array and copying the existing elements to the new array before the new element is added.
If Count is less than the capacity, this method is an 0(1) operation. If the capacity needs to be increased to accommodate the new element, this method becomes an 0(n) operation, where n is Count.
The Add method expects only XmlSchemaExternal and its derived types (XmlSchemaImport, XmlSchemaInclude, and XmlSchemaRedefine) as parameters. The following example illustrates adding an included schema to the Includes collection of an existing XmlSchema object.
Available since 1.1