SoapHeaderCollection.Add(SoapHeader) Methode

Definitie

Voegt een SoapHeader toe aan de SoapHeaderCollection.

public:
 int Add(System::Web::Services::Protocols::SoapHeader ^ header);
public int Add(System.Web.Services.Protocols.SoapHeader header);
member this.Add : System.Web.Services.Protocols.SoapHeader -> int
Public Function Add (header As SoapHeader) As Integer

Parameters

header
SoapHeader

De SoapHeader toe te voegen aan de SoapHeaderCollection.

Retouren

De positie waarop de SoapHeader invoegpositie is ingevoegd.

Voorbeelden

mySoapHeader = gcnew MySoapHeader;
mySoapHeader->text = "This is the second SOAP header";
mySoapHeaderCollection->Add( mySoapHeader );
mySoapHeader = new MySoapHeader();
mySoapHeader.text = "This is the second SOAP header";
mySoapHeaderCollection.Add(mySoapHeader);
mySoapHeader = New MySoapHeader()
mySoapHeader.text = "This is the second SOAP header"
mySoapHeaderCollection.Add(mySoapHeader)

Van toepassing op

Zie ook