Represents a special kind of Microsoft.AspNetCore.Mvc.IActionResult which allows to build an OK (status code 200) response with some extra data Implements the
Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method.
Task
ExecuteResultAsync(ActionContext context)
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 Microsoft.AspNetCore.Mvc.ActionResult.ExecuteResult(Microsoft.AspNetCore.Mvc.ActionContext) method and returns a completed task.