Soap.Rio.TAfterExecuteEvent

From RAD Studio API Documentation
Jump to: navigation, search

C++

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

Properties

Type Visibility Source Unit Parent
typedef public 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