Controller.RedirectToActionPermanent Method (String, Object)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Function RedirectToActionPermanent ( _ actionName As String, _ routeValues As Object _ ) As RedirectToRouteResult 'Usage Dim actionName As String Dim routeValues As Object Dim returnValue As RedirectToRouteResult returnValue = Me.RedirectToActionPermanent(actionName, _ routeValues)
Parameters
- actionName
- Type: System.String
The action name.
- routeValues
- Type: System.Object
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, and route values.
Show: