Event type for HTTP route requests
Source position: httproute.pp line 161
type THTTPRouteRequestEvent = procedure( |
Sender: TObject; |
ARequest: TRequest; |
AResponse: TResponse |
) of object; |
Sender |
|
Object that triggered the event |
ARequest |
|
HTTP request to handle |
AResponse |
|
HTTP response to generate |
THTTPRouteRequestEvent defines an event type for handling HTTP route requests with sender context. It provides access to the sender object along with request and response objects.