HttpListenerResponse::RedirectLocation Property
.NET Framework (current version)
Gets or sets the value of the HTTP Location header in this response.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| ArgumentException | The value specified for a set operation is an empty string (""). |
| ObjectDisposedException | This object is closed. |
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. |
The following code example demonstrates setting this property.
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"; } }
.NET Framework
Available since 2.0
Available since 2.0
Show:
