Soap.SOAPHTTPTrans.TBeforePostEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBeforePostEvent = procedure(const HTTPReqResp: THTTPReqResp; Client: THTTPClient) of object;

C++

typedef void __fastcall (__closure *TBeforePostEvent)(THTTPReqResp* const HTTPReqResp, System::Net::Httpclient::THTTPClient* Client);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Soap.SOAPHTTPTrans.pas
Soap.SOAPHTTPTrans.hpp
Soap.SOAPHTTPTrans Soap.SOAPHTTPTrans

Description

TBeforePostEvent is the type of the OnBeforePost event of THTTPReqResp.

TBeforePostEvent is the type of the OnBeforePost event handler, which is called before an HTTP request message containing SOAP content is sent to a Web Service provider.

HTTPReqResp is the component that generates and sends the HTTP request message.

Data is a handle to the wininet request object.

See Also