Soap.Rio.TRIO.DoAfterExecute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoAfterExecute(const MethodName: string; Response: TStream); virtual;

C++

virtual void __fastcall DoAfterExecute(const System::UnicodeString MethodName, System::Classes::TStream* Response);

Properties

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

Description

Generates an OnAfterExecute event.

TRIO calls DoAfterExecute internally after it receives the results of a method call but before it unmarshals those results. This method simply generates an OnAfterExecute event, passing the MethodName and Response parameters to the event handler. Override this method to perform class-specific actions before or after the OnAfterExecute event.

MethodName is the name of the method that was just executed on the server.

Response is a stream from that contains the results that the server returned after executing the specified method.

See Also