SoapHeaderCollection.CopyTo(SoapHeader[], Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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)