Internet Direct (Indy)
Home
PreviousUpNext
TIdHTTPOnRedirectEvent Type

Event type triggered for a HTTP redirection request.

Pascal
TIdHTTPOnRedirectEvent = procedure (Sender: TObject; var dest: string; var NumRedirect: Integer; var Handled: boolean; var VMethod: TIdHTTPMethod) of object;
Parameters 
Description 
Sender 
HTTP client to query for redirection.
 
dest 
URL for the new resource location.
 
NumRedirect 
An accumulator for the number of redirection requests.
 
Handled 
Indicated that redirects should be handled. 

TIdHTTPOnRedirectEvent is a event type triggered when an HTTP client is notified of a redirection request from the HTTP server. TIdHTTPOnRedirectEvent is used in conjunction with an event handler to respond to the event. 

Sender is the HTTP client that has received the redirection request. 

Dest is the new location or URL for the resource. Dest is often used to update a GUI application with the current URL. 

NumRedirects is a variable used to accumulate the number of redirection requests that the HTTP client has received. 

Handled indicates that the event handler should respond to the redirection request. Set Handled to False if the application is unable to respond to the redirection request.

Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved.
Website http://www.indyproject.org.
Post feedback to the Indy Documentation newsgroup.