Controller::RedirectToActionPermanent Method
Returns an instance of the RedirectResult class with the Permanent property set to true.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | RedirectToActionPermanent(String^) | Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name. |
![]() | RedirectToActionPermanent(String^, Object^) | Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values. |
![]() | RedirectToActionPermanent(String^, RouteValueDictionary^) | Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values. |
![]() | RedirectToActionPermanent(String^, String^) | Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and controller name. |
![]() | RedirectToActionPermanent(String^, String^, Object^) | Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values. |
![]() | RedirectToActionPermanent(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. |
Controller::RedirectToActionPermanent Method (String^)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name.
Parameters
- actionName
-
Type:
System::String^
The action name.
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, controller name, and route values.
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.
public protected: RedirectToRouteResult^ RedirectToActionPermanent( String^ actionName, Object^ routeValues )
Parameters
- actionName
-
Type:
System::String^
The action name.
- routeValues
-
Type:
System::Object^
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.
Controller::RedirectToActionPermanent Method (String^, RouteValueDictionary^)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.
public protected: RedirectToRouteResult^ RedirectToActionPermanent( String^ actionName, RouteValueDictionary^ routeValues )
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.
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.
public protected: RedirectToRouteResult^ RedirectToActionPermanent( String^ actionName, String^ controllerName )
Parameters
- actionName
-
Type:
System::String^
The action name.
- controllerName
-
Type:
System::String^
The controller name.
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 controller name.
Controller::RedirectToActionPermanent Method (String^, String^, Object^)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values.
public protected: RedirectToRouteResult^ RedirectToActionPermanent( String^ actionName, String^ controllerName, Object^ routeValues )
Parameters
- actionName
-
Type:
System::String^
The action name.
- controllerName
-
Type:
System::String^
The controller name.
- routeValues
-
Type:
System::Object^
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, controller name, and route values.
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.
public protected: virtual RedirectToRouteResult^ RedirectToActionPermanent( String^ actionName, String^ controllerName, RouteValueDictionary^ routeValues )
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::RedirectToRouteResult^An instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values.
