SiteComp.IAdapterDispatchParams
From RAD Studio API Documentation
Delphi
IAdapterDispatchParams = interface
C++
__interface INTERFACE_UUID("{87018D80-0450-4CAB-BE8C-58F54040BCEB}") IAdapterDispatchParams : public System::IInterface
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
interface class |
public | SiteComp.pas SiteComp.hpp |
SiteComp | SiteComp |
Description
IAdapterDispatchParams describes adapter action parameters and adapter field values.
Use IAdapterDispatchParams to obtain context information that is needed to execute an adapter action or to obtain the value of an image field from an adapter. When server-side script in a WebSnap application executes an adapter action or requests the value of an image field, an object that implements this interface is created to store information about the adapter that can perform the specified task and the parameters that must be passed to the adapter for it to do so. This interface is then passed to the adapter action's HandleRequest method so that it can look up the adapter and the parameters.
Note: In C++, method declarations that use IAdapterDispatchParams use the _di_IAdapterDispatchParams type instead. This type is a DelphiInterface wrapper around the IAdapterDispatchParams interface:
Note: typedef System::DelphiInterface< IAdapterDispatchParams > _di_IAdapterDispatchParams;