Difference between revisions of "THttpCli.OnHeaderEnd"

From Overbyte
Jump to navigation Jump to search
m (THttpCli:OnHeaderEnd moved to THttpCli.OnHeaderEnd)
 
Line 1: Line 1:
 +
[[Main_Page | Main page]] -> [[ICS_Components_Reference | ICS components reference]]
 +
-> [[THttpCli]] -> [[THttpCli.OnHeaderEnd | OnHeaderEnd]]
 
== Definition ==
 
== Definition ==
 
procedure('''Sender''': TObject) of object;
 
procedure('''Sender''': TObject) of object;

Latest revision as of 17:44, 19 February 2006

Main page -> ICS components reference -> THttpCli -> OnHeaderEnd

Definition

procedure(Sender: TObject) of object;

  • Sender : the client which fired the event

Description

This event will fire when all the headers were sent by the server. In the handler you can be sure you have all the headers so you can make decisions based on the headers. For example Content-length, if the server have included a Content-length header here you can make a progress bar based on this info and the info got on the OnDocData event.

Example

nothing yet

Best practices

nothing yet