Gets or sets the value of the HTTP Location header in this response.
Assembly: System (in System.dll)
Syntax . . :: . String
A String that contains the absolute URL to be sent to the client in the Location header.
Public Property RedirectLocation As Stringpublic string RedirectLocation { get; set; }public:
property String^ RedirectLocation {
String^ get ();
void set (String^ value);
}member RedirectLocation : string with get, set
Property Value
Type: SystemA String that contains the absolute URL to be sent to the client in the Location header.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentException | The value specified for a set operation is an empty string (""). |
| ObjectDisposedException | This object is closed. |
Remarks
The Location header specifies the URL to which the client is directed to locate a requested resource.
Note |
|---|
Setting this property does not automatically set the StatusCode property. |
Examples
The following code example demonstrates setting this property.
Public Shared Sub TemporaryRedirect(ByVal request As HttpListenerRequest, ByVal response As HttpListenerResponse)
If request.Url.OriginalString = "http://www.contoso.com/index.html" Then
response.RedirectLocation = "http://www.contoso.com/indexServer/index.html"
End If
End Sub
public static void TemporaryRedirect(HttpListenerRequest request, HttpListenerResponse response)
{
if (request.Url.OriginalString == @"http://www.contoso.com/index.html")
{
response.RedirectLocation = @"http://www.contoso.com/indexServer/index.html";
}
}
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note