Controller.RedirectToActionPermanent Method (String, String, RouteValueDictionary)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
function RedirectToActionPermanent(
actionName : String,
controllerName : String,
routeValues : RouteValueDictionary
) : RedirectToRouteResult
Parameters
- actionName
- Type: System.String
The action name.
- controllerName
- Type: System.String
The controller name.
- routeValues
- Type: System.Web.Routing.RouteValueDictionary
The route values.
Return Value
Type: System.Web.Mvc.RedirectToRouteResultAn instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values.
Show: