ActionResult.ExecuteResult(ActionContext) Method

Definition

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

public:
 virtual void ExecuteResult(Microsoft::AspNetCore::Mvc::ActionContext ^ context);
public virtual void ExecuteResult (Microsoft.AspNetCore.Mvc.ActionContext context);
abstract member ExecuteResult : Microsoft.AspNetCore.Mvc.ActionContext -> unit
override this.ExecuteResult : Microsoft.AspNetCore.Mvc.ActionContext -> unit
Public Overridable 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.

Applies to