ControllerBase.RedirectToActionPreserveMethod Method

Definition

Redirects (Status307TemporaryRedirect) to the specified action with Permanent set to false and PreserveMethod set to true, using the specified actionName, controllerName, routeValues, and fragment.

[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToActionPreserveMethod (string actionName = default, string controllerName = default, object routeValues = default, string fragment = default);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.RedirectToActionResult RedirectToActionPreserveMethod (string? actionName = default, string? controllerName = default, object? routeValues = default, string? fragment = default);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member RedirectToActionPreserveMethod : string * string * obj * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
override this.RedirectToActionPreserveMethod : string * string * obj * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Overridable Function RedirectToActionPreserveMethod (Optional actionName As String = Nothing, Optional controllerName As String = Nothing, Optional routeValues As Object = Nothing, Optional fragment As String = Nothing) As RedirectToActionResult

Parameters

actionName
String

The name of the action.

controllerName
String

The name of the controller.

routeValues
Object

The route data to use for generating the URL.

fragment
String

The fragment to add to the URL.

Returns

The created RedirectToActionResult for the response.

Attributes

Applies to