ControllerBase.RedirectToActionPreserveMethod Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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.
The created RedirectToActionResult for the response.
- Attributes