RedirectToRouteResult.ExecuteResult(ActionContext) Method

Definition

Caution

This implementation will be removed in a future release, use ExecuteResultAsync.

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

public:
 override void ExecuteResult(Microsoft::AspNetCore::Mvc::ActionContext ^ context);
public override void ExecuteResult (Microsoft.AspNetCore.Mvc.ActionContext context);
[System.Obsolete("This implementation will be removed in a future release, use ExecuteResultAsync.")]
public override void ExecuteResult (Microsoft.AspNetCore.Mvc.ActionContext context);
override this.ExecuteResult : Microsoft.AspNetCore.Mvc.ActionContext -> unit
[<System.Obsolete("This implementation will be removed in a future release, use ExecuteResultAsync.")>]
override this.ExecuteResult : Microsoft.AspNetCore.Mvc.ActionContext -> unit
Public Overrides Sub ExecuteResult (context As ActionContext)

Parameters

context
ActionContext

The context in which the result is executed. The context information includes information about the action that was executed and request information.

Attributes

Applies to