XmlSchemaObjectCollection.Insert(Int32, XmlSchemaObject) Method

Definition

Inserts an XmlSchemaObject to the XmlSchemaObjectCollection.

public:
 void Insert(int index, System::Xml::Schema::XmlSchemaObject ^ item);
public void Insert (int index, System.Xml.Schema.XmlSchemaObject item);
member this.Insert : int * System.Xml.Schema.XmlSchemaObject -> unit
Public Sub Insert (index As Integer, item As XmlSchemaObject)

Parameters

index
Int32

The zero-based index at which an item should be inserted.

item
XmlSchemaObject

The XmlSchemaObject to insert.

Exceptions

index is less than zero.

-or-

index is greater than Count.

Remarks

If Count already equals the capacity, the capacity of the list is doubled by automatically reallocating the internal array before the new element is inserted.

If index is equal to Count, value is added to the end of XmlSchemaObjectCollection.

The elements that follow the insertion point move down to accommodate the new element.

Applies to