Soap.SOAPPasInv.TSoapPascalInvoker.BeforeDispatchEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BeforeDispatchEvent: TBeforeDispatchEvent read FBeforeDispatchEvent write FBeforeDispatchEvent;

C++

__property TBeforeDispatchEvent BeforeDispatchEvent = {read=FBeforeDispatchEvent, write=FBeforeDispatchEvent};

Properties

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

Description

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

Write a BeforeDispatchEvent event handler to examine a SOAP request before the invoker calls on the target invokable interface to execute it. The Invoke method generates this event after it has obtained an interface pointer for the target invokable interface, but before it calls the specified method on that interface.

See Also