ServiceDescriptionCollection.Insert(Int32, ServiceDescription) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
加入指定的 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。
例外狀況
範例
// 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 結尾。
插入點後的專案會向下移動以容納新的專案。