Soap.Rio.TRIO.DoBeforeExecute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoBeforeExecute(const MethodName: string; Request: TStream); virtual;

C++

virtual void __fastcall DoBeforeExecute(const System::UnicodeString MethodName, System::Classes::TStream* Request);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Soap.Rio.pas
Soap.Rio.hpp
Soap.Rio TRIO

Description

Generates an OnBeforeExecute event.

TRIO calls DoBeforeExecute internally before it sends a SOAP packet to the server for execution. This method simply generates an OnBeforeExecute event, passing the MethodName parameter and the string in the Request parameter to the event handler. Override this method to perform class-specific actions before or after the OnBeforeExecute event.

MethodName is the name of the method that the encoded SOAP request calls.

Request is a stream from which the encoded SOAP request packet can be read.

See Also