Soap.InvokeRegistry.TSOAPHeaders.SendAt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  SendAt(Index: Integer): TSOAPHeader;

C++

TSOAPHeader* __fastcall SendAt(int Index);

Properties

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

Description

Retrieves a header from an outgoing message, given its position.

Call SendAt to retrieve the header object for a header you have already added to an outgoing message using the Send method.

Index is the position of the header you want to retrieve, where 0 specifies the first header, 1 specifies the second header, and so on. The SendCount property provides an upper bound for this index.

SendAt returns the header at the specified position.

See Also