Soap.InvokeRegistry.TSOAPHeaders.Send

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Send(const Hdr: TSOAPHeader);

C++

void __fastcall Send(TSOAPHeader* const Hdr);

Properties

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

Description

Adds a header to an outgoing message.

Call Send to add a header to an outgoing message. On the client, call Send before executing a method on an invokable interface. On the server, call Send before returning from the method that the client invoked.

Hdr is the header object instance that represents the header you want to add to the outgoing message.

Note: The SetOwnsSentHeaders method controls whether you must free the object that is supplied as the Hdr parameter after sending the message.

See Also