A base class which can be subclassed to create a HTTP component for a Web site.
More...
|
| OnDelete (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a DELETE request.
|
|
| OnGet (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a GET request.
|
|
| OnHead (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a HEAD request.
|
|
| OnOptions (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a OPTIONS request.
|
|
| OnPost (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a POST request.
|
|
| OnPut (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a PUT request.
|
|
| OnTrace (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a TRACE request.
|
|
| OnPatch (TdjRequest Request, TdjResponse Response) |
| Called by the server (via the service method) to allow a component to handle a PATCH request. More...
|
|
| Service (TdjServerContext Context, TdjRequest Request, TdjResponse Response) |
| Handle a HTTP request. More...
|
|
A base class which can be subclassed to create a HTTP component for a Web site.
A subclass of TdjWebComponent must override at least one method, usually one of these:
- OnGet, if the web component supports HTTP GET requests
- OnPost, for HTTP POST requests
- OnPut, for HTTP PUT requests
- OnDelete, for HTTP DELETE requests