Soap.Rio.TAfterExecuteEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TAfterExecuteEvent  = procedure(const MethodName: string; SOAPResponse: TStream) of object;

C++

typedef void __fastcall (__closure *TAfterExecuteEvent)(const System::UnicodeString MethodName, System::Classes::TStream* SOAPResponse);

Properties

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

Description

TAfterExecuteEvent is the type of event handlers that respond after a remote interfaced object receives the encoded results from executing a method call to a Web Service.

TAfterExecuteEvent is the type of the OnAfterExecute event handler, which is called after a client receives the encoded results from executing a method on an invokable interface, but before those results have been unmarshaled.

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

SOAPResponse is a stream from which you can read the encoded results that the server returned after executing the specified method.

See Also