Soap.InvokeRegistry.THeaderList.Add

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Add(Header: TSOAPHeader); overload;
procedure Add(Header: TObject); overload;

C++

void __fastcall Add(TSOAPHeader* Header)/* overload */;
void __fastcall Add(System::TObject* Header)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry THeaderList

Description

Adds a new header to the end of the list.

Call Add to add a header to the end of the Headers property array. When you call Add, the new Header is added to the end of the array and the value of the Count property is incremented.

Header is the TSOAPHeader descendants that is added to the list.

See Also