ActionResult Class
Definition
A default implementation of IActionResult.
public ref class ActionResult abstract : Microsoft::AspNetCore::Mvc::IActionResult
public abstract class ActionResult : Microsoft.AspNetCore.Mvc.IActionResult
type ActionResult = class
interface IActionResult
Public 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. |