Soap.SOAPPasInv.TSoapPascalInvoker.AfterDispatchEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterDispatchEvent: TAfterDispatchEvent read FAfterDispatchEvent write FAfterDispatchEvent;

C++

__property TAfterDispatchEvent AfterDispatchEvent = {read=FAfterDispatchEvent, write=FAfterDispatchEvent};

Properties

Type Visibility Source Unit Parent
event published
Soap.SOAPPasInv.pas
Soap.SOAPPasInv.hpp
Soap.SOAPPasInv TSoapPascalInvoker

Description

Occurs after the invoker successfully calls an invokable interface to execute a SOAP request.

Write a AfterDispatchEvent event handler to examine a SOAP response after the invoker executes a request by calling the target invokable interface. The Invoke method generates this event after it has executed a requested method and generated a response packet.

Note: AfterDispatchEvent only occurs if the method call is successful. If the invoker encounters an exception when trying to execute the specified method, it generates an OnExceptionEvent instead.

See Also