다음을 통해 공유


ImportCollection.Add(Import) 메서드

정의

지정된 ImportImportCollection 끝에 추가합니다.

public:
 int Add(System::Web::Services::Description::Import ^ import);
public int Add (System.Web.Services.Description.Import import);
member this.Add : System.Web.Services.Description.Import -> int
Public Function Add (import As Import) As Integer

매개 변수

import
Import

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

반환

Int32

import 매개 변수가 추가된 위치의 인덱스(0부터 시작)입니다.

예제

다음 예제에서는 사용 된 Add 메서드. 에 대 한 자세한 내용은 합니다 CreateImport 샘플에서 사용 하는 방법에서 예제를 참조 하세요.를 Import 클래스입니다.

ServiceDescription^ myServiceDescription = ServiceDescription::Read( "StockQuote_cpp.wsdl" );
myServiceDescription->Imports->Add( CreateImport( "http://localhost/stockquote/schemas", "http://localhost/stockquote/stockquote_cpp.xsd" ) );
ServiceDescription myServiceDescription =
   ServiceDescription.Read("StockQuote_cs.wsdl");
myServiceDescription.Imports.Add(
   CreateImport("http://localhost/stockquote/schemas",
   "http://localhost/stockquote/stockquote_cs.xsd"));
Dim myServiceDescription As ServiceDescription = _
   ServiceDescription.Read("StockQuote_vb.wsdl")
myServiceDescription.Imports.Add( _
   CreateImport("http://localhost/stockquote/schemas", _
   "http://localhost/stockquote/stockquote_vb.xsd"))

적용 대상