Controller.RedirectToRoute Method

Definition

Overloads

RedirectToRoute(Object)

Redirects to the specified route using the specified route values.

RedirectToRoute(String)

Redirects to the specified route using the route name.

RedirectToRoute(RouteValueDictionary)

Redirects to the specified route using the route dictionary.

RedirectToRoute(String, Object)

Redirects to the specified route using the route name and route values.

RedirectToRoute(String, RouteValueDictionary)

Redirects to the specified route using the route name and route dictionary.

RedirectToRoute(Object)

Redirects to the specified route using the specified route values.

protected internal System.Web.Mvc.RedirectToRouteResult RedirectToRoute(object routeValues);

Parameters

routeValues
Object

The parameters for a route.

Returns

The redirect-to-route result object.

Applies to

RedirectToRoute(String)

Redirects to the specified route using the route name.

protected internal System.Web.Mvc.RedirectToRouteResult RedirectToRoute(string routeName);

Parameters

routeName
String

The name of the route.

Returns

The redirect-to-route result object.

Applies to

RedirectToRoute(RouteValueDictionary)

Redirects to the specified route using the route dictionary.

protected internal System.Web.Mvc.RedirectToRouteResult RedirectToRoute(System.Web.Routing.RouteValueDictionary routeValues);

Parameters

routeValues
RouteValueDictionary

The parameters for a route.

Returns

The redirect-to-route result object.

Applies to

RedirectToRoute(String, Object)

Redirects to the specified route using the route name and route values.

protected internal System.Web.Mvc.RedirectToRouteResult RedirectToRoute(string routeName, object routeValues);

Parameters

routeName
String

The name of the route.

routeValues
Object

The parameters for a route.

Returns

The redirect-to-route result object.

Applies to

RedirectToRoute(String, RouteValueDictionary)

Redirects to the specified route using the route name and route dictionary.

protected internal virtual System.Web.Mvc.RedirectToRouteResult RedirectToRoute(string routeName, System.Web.Routing.RouteValueDictionary routeValues);

Parameters

routeName
String

The name of the route.

routeValues
RouteValueDictionary

The parameters for a route.

Returns

The redirect-to-route result object.

Applies to