HttpListenerResponse::Redirect Method (String^)
.NET Framework (current version)
Configures the response to redirect the client to the specified URL.
Assembly: System (in System.dll)
Parameters
- url
-
Type:
System::String^
The URL that the client should use to locate the requested resource.
The Redirect method is used to redirect a client to the new location for a resource. This method sets the response's Location header to url, the StatusCode property to Redirect, and the StatusDescription property to "Found".
The following code example demonstrates calling this method.
public static void PermanentRedirect(HttpListenerRequest request, HttpListenerResponse response) { if (request.Url.OriginalString == @"http://www.contoso.com/index.html") { // Sets the location header, status code and status description. response.Redirect(@"http://www.contoso.com/indexServer/index.html"); } }
.NET Framework
Available since 2.0
Available since 2.0
Show: