다음을 통해 공유


SoapHeaderCollection.CopyTo(SoapHeader[], Int32) 메서드

정의

SoapHeaderCollection의 특정 인덱스부터 시작하여 Array 요소를 Array에 복사합니다.

public:
 void CopyTo(cli::array <System::Web::Services::Protocols::SoapHeader ^> ^ array, int index);
public void CopyTo (System.Web.Services.Protocols.SoapHeader[] array, int index);
member this.CopyTo : System.Web.Services.Protocols.SoapHeader[] * int -> unit
Public Sub CopyTo (array As SoapHeader(), index As Integer)

매개 변수

array
SoapHeader[]

Array에서 복사한 요소의 대상인 일차원 SoapHeaderCollection입니다. 배열에는 0부터 시작하는 인덱스가 있어야 합니다.

index
Int32

array 매개 변수에서 0부터 시작하는 인덱스이며 복사가 시작되는 곳입니다.

예외

array 매개 변수가 null인 경우

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

array 매개 변수가 다차원 배열인 경우

또는 소스 SoapHeaderCollection의 요소 수가 index 매개 변수에서 대상 배열의 끝까지 사용할 수 있는 공간보다 큽니다.

예제

mySoapHeaders = gcnew array<MySoapHeader^>(mySoapHeaderCollection->Count);
mySoapHeaderCollection->CopyTo( mySoapHeaders, 0 );
mySoapHeaders = new MySoapHeader[mySoapHeaderCollection.Count];
mySoapHeaderCollection.CopyTo(mySoapHeaders, 0);
mySoapHeaders = New MySoapHeader(mySoapHeaderCollection.Count-1) {}
mySoapHeaderCollection.CopyTo(mySoapHeaders, 0)

적용 대상

추가 정보