Controller.RedirectToActionPermanent Method (String, String)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and controller name.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Function RedirectToActionPermanent ( _ actionName As String, _ controllerName As String _ ) As RedirectToRouteResult 'Usage Dim actionName As String Dim controllerName As String Dim returnValue As RedirectToRouteResult returnValue = Me.RedirectToActionPermanent(actionName, _ controllerName)
Parameters
- actionName
- Type: System.String
The action name.
- controllerName
- Type: System.String
The controller name.
Return Value
Type: System.Web.Mvc.RedirectToRouteResultAn instance of the RedirectResult class with the Permanent property set to true using the specified action name, and controller name.
Show: