SoapHeaderCollection.Insert(Int32, SoapHeader) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts a SoapHeader into the SoapHeaderCollection at the specified index.
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
The zero-based index at which to insert the SoapHeader into the SoapHeaderCollection.
- header
- SoapHeader
The SoapHeader to insert into the SoapHeaderCollection.
The index
parameter is not a valid index in the 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)
If the index
parameter equals the number of items in the collection, then the SoapHeader is appended to the end of the collection.
The SoapHeader elements after the insertion point move down to accommodate the new element.
Product | Versions |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: