다음을 통해 공유


ImportCollection.Insert(Int32, Import) 메서드

정의

지정된 Import 인스턴스를 ImportCollection의 지정된 인덱스 위치(0부터 시작)에 추가합니다.

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

매개 변수

index
Int32

import 매개 변수를 삽입할 인덱스(0부터 시작)입니다.

import
Import

컬렉션에 추가할 Import입니다.

예외

index 매개 변수가 0보다 작습니다.

또는 index 매개 변수가 Count보다 큰 경우

예제

다음 예제에서는 Insert 메서드를 사용하는 방법을 보여 줍니다. 사용자 정의 대 한 소스를 보려면 CreateImport 메서드를 예제에 포함 된 참조는 Import 클래스입니다.

myServiceDescription = ServiceDescription::Read( "StockQuoteService_cpp.wsdl" );
myServiceDescription->Imports->Insert( 0, CreateImport( "http://localhost/stockquote/definitions", "http://localhost/stockquote/stockquote_cpp.wsdl" ) );
myServiceDescription =
   ServiceDescription.Read("StockQuoteService_cs.wsdl");
myServiceDescription.Imports.Insert(
   0,CreateImport("http://localhost/stockquote/definitions",
   "http://localhost/stockquote/stockquote_cs.wsdl"));
  myServiceDescription = _
     ServiceDescription.Read("StockQuoteService_vb.wsdl")
myServiceDescription.Imports.Insert(0, _
   CreateImport("http://localhost/stockquote/definitions", _
   "http://localhost/stockquote/stockquote_vb.wsdl"))

설명

컬렉션에 이미 있는 항목의 수가 컬렉션의 용량을 자동으로 새 요소를 삽입 하기 전에 내부 배열을 다시 할당 하 여 용량 배가 됩니다.

경우는 index 매개 변수 값과 같음 Countimport 매개 변수 끝에 추가 됩니다는 ImportCollection합니다.

삽입 지점 뒤에 있는 요소는 새 요소를 수용 하도록 아래로 이동 합니다.

적용 대상