ActionResult Class 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A default implementation of IActionResult.
public ref class ActionResult abstract : Microsoft::AspNetCore::Mvc::IActionResultpublic abstract class ActionResult : Microsoft.AspNetCore.Mvc.IActionResulttype ActionResult = class
    interface IActionResultPublic MustInherit Class ActionResult
Implements IActionResult- Inheritance
- 
				ActionResult
- Derived
- Implements
Constructors
| ActionResult() | 
Methods
| 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. | 
| 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. |