Controller::RedirectToActionPermanent Method

 

Returns an instance of the RedirectResult class with the Permanent property set to true.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_protmethodRedirectToActionPermanent(String^)

Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name.

System_CAPS_protmethodRedirectToActionPermanent(String^, Object^)

Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.

System_CAPS_protmethodRedirectToActionPermanent(String^, RouteValueDictionary^)

Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.

System_CAPS_protmethodRedirectToActionPermanent(String^, String^)

Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and controller name.

System_CAPS_protmethodRedirectToActionPermanent(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.

System_CAPS_protmethodRedirectToActionPermanent(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.

Return to top

Controller::RedirectToActionPermanent Method (String^)

Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name.

public protected:
RedirectToRouteResult^ RedirectToActionPermanent(
	String^ actionName
)

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.

Return to top

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.

Return to top

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.

Return to top

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.

Return to top

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.

Return to top

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.

Return to top
Show: