SoapHeaderCollection.Insert(Int32, SoapHeader) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SoapHeaderCollection의 지정된 인덱스에 SoapHeader를 삽입합니다.
public:
void Insert(int index, System::Web::Services::Protocols::SoapHeader ^ header);
public void Insert (int index, System.Web.Services.Protocols.SoapHeader header);
member this.Insert : int * System.Web.Services.Protocols.SoapHeader -> unit
Public Sub Insert (index As Integer, header As SoapHeader)
매개 변수
- index
- Int32
SoapHeader를 SoapHeaderCollection에 삽입할 위치는 0부터 시작하는 인덱스입니다.
- header
- SoapHeader
SoapHeaderCollection에 삽입할 SoapHeader입니다.
예외
index
매개 변수는 SoapHeaderCollection의 유효한 인덱스가 아닙니다.
예제
mySoapHeader = gcnew MySoapHeader;
mySoapHeader->text = "This header is inserted before the first header";
mySoapHeaderCollection->Insert( 0, mySoapHeader );
mySoapHeader = new MySoapHeader();
mySoapHeader.text = "This header is inserted before the first header";
mySoapHeaderCollection.Insert(0, mySoapHeader);
mySoapHeader = New MySoapHeader()
mySoapHeader.text = "This header is inserted before the first header"
mySoapHeaderCollection.Insert(0, mySoapHeader)
설명
매개 변수가 index
컬렉션의 항목 수와 같으면 컬렉션 SoapHeader 의 끝에 추가됩니다.
SoapHeader 새 요소를 수용하기 위해 삽입 지점 뒤의 요소가 아래로 이동합니다.