HttpResponseBase.RedirectPermanent Method (String, Boolean)
When overridden in a derived class, performs a permanent redirect from the requested URL to the specified URL, and provides the option to complete the response.
Namespace: System.Web
Assembly: System.Web (in System.Web.dll)
abstract RedirectPermanent : url:string * endResponse:bool -> unit override RedirectPermanent : url:string * endResponse:bool -> unit
Parameters
- url
- Type: System.String
The location to which the request is redirected.
- endResponse
- Type: System.Boolean
true to terminate the response; otherwise false. The default is false.
| Exception | Condition |
|---|---|
| NotImplementedException | Always. |
The RedirectPermanent(String, Boolean) overload method provides a 301 HTTP status code in the response and includes the URL to redirect the request to. This overload also provides the option to specify whether to terminate or to complete the response after the redirect has been performed. A 301 HTTP status code is a standard code in an HTTP response. It indicates that a permanent redirect exists, and it provides the redirect location.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.