Udostępnij za pośrednictwem


ServiceDescriptionCollection.Insert(Int32, ServiceDescription) Metoda

Definicja

Dodaje określone ServiceDescription wystąpienie do określonego ServiceDescriptionCollection indeksu opartego na zera.

public:
 void Insert(int index, System::Web::Services::Description::ServiceDescription ^ serviceDescription);
public void Insert (int index, System.Web.Services.Description.ServiceDescription serviceDescription);
member this.Insert : int * System.Web.Services.Description.ServiceDescription -> unit
Public Sub Insert (index As Integer, serviceDescription As ServiceDescription)

Parametry

index
Int32

Indeks oparty na zera, w którym ma być wstawiony serviceDescription parametr.

serviceDescription
ServiceDescription

Element ServiceDescription do dodania do kolekcji.

Wyjątki

Parametr index jest mniejszy niż zero.

-lub-

Parametr index jest większy niż Count.

Przykłady

// Insert a ServiceDescription into the collection.
myCollection->Insert( 1, myServiceDescription2 );
// Insert a 'ServiceDescription' object into the collection.
myCollection.Insert(1, myServiceDescription2);
' Insert a 'ServiceDescription' object into the collection.
myCollection.Insert(1, myServiceDescription2)

Uwagi

Jeśli liczba elementów w kolekcji jest już równa pojemności kolekcji, pojemność jest podwojona przez automatyczne cofnięcie przydziału tablicy wewnętrznej przed wstawieniem nowego elementu.

index Jeśli parametr jest równy Count, serviceDescription parametr zostanie dodany na końcu ServiceDescriptionCollection.

Elementy po przejściu punktu wstawiania w dół, aby pomieścić nowy element.

Dotyczy