Web.HTTPApp.TWebRequest.Referer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Referer: string index 12 read GetStringVariable;

C++

__property System::UnicodeString Referer = {read=GetStringVariable, index=12};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebRequest

Description

Reports the value of the Referer header of the HTTP request message.

Read Referer to determine the URI of the resource where the HTTP request message originated. Referer allows the server application to generate back-links to the source of the request. If Referer is a partial URI, it should be interpreted as a relative path to the URL property.

The Referer property is not set when the URL of the HTTP request was obtained from a source that does not have its own URI, such as input from the user keyboard.

See Also