RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Rio.TAfterExecuteEvent Type

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.

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

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. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!