THttpCli.OnRequestDone

From Overbyte
Revision as of 08:04, 15 February 2006 by Tibor (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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