Поделиться через


ServiceDescriptionCollection.Insert(Int32, ServiceDescription) Метод

Определение

Добавляет заданный экземпляр ServiceDescription в коллекцию ServiceDescriptionCollection по указанному индексу (отсчитываемому с нуля).

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)

Параметры

index
Int32

Индекс (с нуля) места вставки параметра serviceDescription.

serviceDescription
ServiceDescription

Параметр ServiceDescription для добавления в коллекцию.

Исключения

Значение параметра index меньше нуля.

-или-

Значение параметра index больше значения Count.

Примеры

// 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)

Комментарии

Если количество элементов в коллекции уже равно емкости коллекции, емкость удваивается путем автоматического перераспределения внутреннего массива до вставки нового элемента.

index Если параметр равен Count, serviceDescription параметр добавляется в конец ServiceDescriptionCollection.

Элементы после точки вставки перемещаются вниз для размещения нового элемента.

Применяется к