Share via


PageModel.RedirectToAction Method

Definition

Overloads

Name Description
RedirectToAction(String)

Redirects (Status302Found) to the specified action using the actionName.

RedirectToAction(String, Object)

Redirects (Status302Found) to the specified action using the actionName and routeValues.

RedirectToAction(String, String)

Redirects (Status302Found) to the specified action using the actionName and the controllerName.

RedirectToAction(String, String, Object)

Redirects (Status302Found) to the specified action using the specified actionName, controllerName, and routeValues.

RedirectToAction(String, String, String)

Redirects (Status302Found) to the specified action using the specified actionName, controllerName, and fragment.

RedirectToAction(String, String, Object, String)

Redirects (Status302Found) to the specified action using the specified actionName, controllerName, routeValues, and fragment.

RedirectToAction(String)

Source:
PageModel.cs
Source:
PageModel.cs
Source:
PageModel.cs

Redirects (Status302Found) to the specified action using the actionName.

public:
 virtual Microsoft::AspNetCore::Mvc::RedirectToActionResult ^ RedirectToAction(System::String ^ actionName);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string? actionName);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string actionName);
abstract member RedirectToAction : string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToAction : string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToAction (actionName As String) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

Returns

The created RedirectToActionResult for the response.

Applies to

RedirectToAction(String, Object)

Source:
PageModel.cs
Source:
PageModel.cs
Source:
PageModel.cs

Redirects (Status302Found) to the specified action using the actionName and routeValues.

public:
 virtual Microsoft::AspNetCore::Mvc::RedirectToActionResult ^ RedirectToAction(System::String ^ actionName, System::Object ^ routeValues);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string? actionName, object? routeValues);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string actionName, object routeValues);
abstract member RedirectToAction : string * obj -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToAction : string * obj -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToAction (actionName As String, routeValues As Object) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

routeValues
Object

The parameters for a route.

Returns

The created RedirectToActionResult for the response.

Applies to

RedirectToAction(String, String)

Source:
PageModel.cs
Source:
PageModel.cs
Source:
PageModel.cs

Redirects (Status302Found) to the specified action using the actionName and the controllerName.

public:
 virtual Microsoft::AspNetCore::Mvc::RedirectToActionResult ^ RedirectToAction(System::String ^ actionName, System::String ^ controllerName);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string? actionName, string? controllerName);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string actionName, string controllerName);
abstract member RedirectToAction : string * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToAction : string * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToAction (actionName As String, controllerName As String) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

controllerName
String

The name of the pageModel.

Returns

The created RedirectToActionResult for the response.

Applies to

RedirectToAction(String, String, Object)

Source:
PageModel.cs
Source:
PageModel.cs
Source:
PageModel.cs

Redirects (Status302Found) to the specified action using the specified actionName, controllerName, and routeValues.

public:
 virtual Microsoft::AspNetCore::Mvc::RedirectToActionResult ^ RedirectToAction(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string? actionName, string? controllerName, object? routeValues);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string actionName, string controllerName, object routeValues);
abstract member RedirectToAction : string * string * obj -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToAction : string * string * obj -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToAction (actionName As String, controllerName As String, routeValues As Object) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

controllerName
String

The name of the pageModel.

routeValues
Object

The parameters for a route.

Returns

The created RedirectToActionResult for the response.

Applies to

RedirectToAction(String, String, String)

Source:
PageModel.cs
Source:
PageModel.cs
Source:
PageModel.cs

Redirects (Status302Found) to the specified action using the specified actionName, controllerName, and fragment.

public:
 virtual Microsoft::AspNetCore::Mvc::RedirectToActionResult ^ RedirectToAction(System::String ^ actionName, System::String ^ controllerName, System::String ^ fragment);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string? actionName, string? controllerName, string? fragment);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string actionName, string controllerName, string fragment);
abstract member RedirectToAction : string * string * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToAction : string * string * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToAction (actionName As String, controllerName As String, fragment As String) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

controllerName
String

The name of the pageModel.

fragment
String

The fragment to add to the URL.

Returns

The created RedirectToActionResult for the response.

Applies to

RedirectToAction(String, String, Object, String)

Source:
PageModel.cs
Source:
PageModel.cs
Source:
PageModel.cs

Redirects (Status302Found) to the specified action using the specified actionName, controllerName, routeValues, and fragment.

public:
 virtual Microsoft::AspNetCore::Mvc::RedirectToActionResult ^ RedirectToAction(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, System::String ^ fragment);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string? actionName, string? controllerName, object? routeValues, string? fragment);
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToAction(string actionName, string controllerName, object routeValues, string fragment);
abstract member RedirectToAction : string * string * obj * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToAction : string * string * obj * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToAction (actionName As String, controllerName As String, routeValues As Object, fragment As String) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

controllerName
String

The name of the pageModel.

routeValues
Object

The parameters for a route.

fragment
String

The fragment to add to the URL.

Returns

The created RedirectToActionResult for the response.

Applies to