RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebAdapt.TActionRequestFieldsHandledEvent Type

TActionRequestFieldsHandledEvent is the type for event handlers on adapter action objects that are called when the adapter performs some operation on its fields in response to an HTTP request.

Pascal
TActionRequestFieldsHandledEvent = procedure (Sender: TObject; ActionRequest: IActionRequest; AdapterFields: TObjectList; var Handled: Boolean) of object;
C++
(Sender: TObject; ActionRequest: IActionRequest; AdapterFields: TObjectList; var Handled: Boolean) ( TActionRequestFieldsHandledEvent)();

TActionRequestFieldsHandledEvent is the type for event handlers that let you augment or replace the default operations on adapter fields in response to an HTTP request. 

Sender is the adapter to which the fields belong. 

ActionRequest is an interface to the request object for the current HTTP request. 

AdapterFields lists the fields of the adapter for which the current HTTP request includes values. 

Handled returns true if the event handler performs the operation on the field, false if the adapter should continue with its default processing. 

 

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