Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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)
Syntax
'Declaration
Protected Friend Function RedirectToActionPermanent ( _
actionName As String, _
routeValues As RouteValueDictionary _
) As RedirectToRouteResult
'Usage
Dim actionName As String
Dim routeValues As RouteValueDictionary
Dim returnValue As RedirectToRouteResult
returnValue = Me.RedirectToActionPermanent(actionName, _
routeValues)
protected internal RedirectToRouteResult RedirectToActionPermanent(
string actionName,
RouteValueDictionary routeValues
)
protected public:
RedirectToRouteResult^ RedirectToActionPermanent(
String^ actionName,
RouteValueDictionary^ routeValues
)
function RedirectToActionPermanent(
actionName : String,
routeValues : RouteValueDictionary
) : RedirectToRouteResult
Parameters
- actionName
Type: System.String
The action name.
- routeValues
Type: System.Web.Routing.RouteValueDictionary
The route values.
Return Value
Type: System.Web.Mvc.RedirectToRouteResult
An instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.