Soap.Rio.TRIO.SOAPHeaders

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SOAPHeaders: TSOAPHeaders read FSOAPHeaders;

C++

__property Soap::Invokeregistry::TSOAPHeaders* SOAPHeaders = {read=FSOAPHeaders};

Properties

Type Visibility Source Unit Parent
property public
Soap.Rio.pas
Soap.Rio.hpp
Soap.Rio TRIO

Description

Provides access to the headers of SOAP messages that the remote interface object sends or receives.

SOAPHeaders is a helper object that lets TRIO support the ISOAPHeaders interface. It has methods to add headers to an outgoing request message and to retrieve the headers from the resulting response message. You can use the SOAPHeaders property directly, or access it through an ISOAPHeaders interface, which is obtained from the invokable interface using the as operator (Delphi) or the Supports method (C++).

Note: Although TRIO uses the SOAPHeaders property to implement an ISOAPHeaders interface, you can't obtain an ISOAPHeaders interface directly from TRIO. Rather, you must obtain this interface from an invokable interface.

See Also