EmptyResult 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.
Represents an ActionResult that when executed will do nothing.
public ref class EmptyResult : Microsoft::AspNetCore::Mvc::ActionResultpublic class EmptyResult : Microsoft.AspNetCore.Mvc.ActionResulttype EmptyResult = class
    inherit ActionResultPublic Class EmptyResult
Inherits ActionResult- Inheritance
Constructors
| EmptyResult() | 
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.(Inherited from ActionResult) |