Difference between revisions of "THttpCli.OnRequestDone"
Jump to navigation
Jump to search
m (THttpCli:OnRequestDone moved to THttpCli.OnRequestDone) |
|
(No difference)
|
Revision as of 08:26, 19 February 2006
Definition
procedure (Sender: TObject; RqType: THttpRequest; ErrCode: Word) of object;
- Sender : the client which fired the event
- RqType : type of the request. Can be httpABORT, httpGET, httpPOST, httpPUT, httpHEAD, httpCLOSE.
- ErrCode : error code for the request. If it is 0, there was no error. The value 3 means you have aborted your request
Description
This event will fire when the server has sent a response for your request and all data transfers has been done.
Examples
nothing yet
Best practices
nothing yet