RedirectToRouteResult Class

Definition

An ActionResult that returns a Found (302), Moved Permanently (301), Temporary Redirect (307), or Permanent Redirect (308) response with a Location header. Targets a registered route.

public ref class RedirectToRouteResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::ViewFeatures::IKeepTempDataResult
public class RedirectToRouteResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.ViewFeatures.IKeepTempDataResult
type RedirectToRouteResult = class
    inherit ActionResult
    interface IKeepTempDataResult
    interface IActionResult
type RedirectToRouteResult = class
    inherit ActionResult
    interface IActionResult
    interface IKeepTempDataResult
Public Class RedirectToRouteResult
Inherits ActionResult
Implements IActionResult, IKeepTempDataResult
Inheritance
RedirectToRouteResult
Implements

Constructors

RedirectToRouteResult(Object)

Initializes a new instance of the RedirectToRouteResult with the values provided.

RedirectToRouteResult(String, Object)

Initializes a new instance of the RedirectToRouteResult with the values provided.

RedirectToRouteResult(String, Object, Boolean)

Initializes a new instance of the RedirectToRouteResult with the values provided.

RedirectToRouteResult(String, Object, Boolean, Boolean)

Initializes a new instance of the RedirectToRouteResult with the values provided.

RedirectToRouteResult(String, Object, Boolean, Boolean, String)

Initializes a new instance of the RedirectToRouteResult with the values provided.

RedirectToRouteResult(String, Object, Boolean, String)

Initializes a new instance of the RedirectToRouteResult with the values provided.

RedirectToRouteResult(String, Object, String)

Initializes a new instance of the RedirectToRouteResult with the values provided.

Properties

Fragment

Gets or sets the fragment to add to the URL.

Permanent

Gets or sets an indication that the redirect is permanent.

PreserveMethod

Gets or sets an indication that the redirect preserves the initial request method.

RouteName

Gets or sets the name of the route to use for generating the URL.

RouteValues

Gets or sets the route data to use for generating the URL.

UrlHelper

Gets or sets the IUrlHelper used to generate URLs.

Methods

ExecuteResult(ActionContext)
Obsolete.

Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method.

ExecuteResult(ActionContext)

Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method.

(Inherited from ActionResult)
ExecuteResultAsync(ActionContext)

Executes the result operation of the action method asynchronously. This method is called by MVC to process the result of an action method.

ExecuteResultAsync(ActionContext)

Executes the result operation of the action method asynchronously. This method is called by MVC to process the result of an action method. The default implementation of this method calls the ExecuteResult(ActionContext) method and returns a completed task.

(Inherited from ActionResult)

Applies to