aspnetcore/src/Microsoft.AspNet.Mvc/EmptyResult.cs

19 lines
397 B
C#

using System.Threading.Tasks;
namespace Microsoft.AspNet.Mvc
{
public class EmptyResult : IActionResult
{
private static readonly EmptyResult _singleton = new EmptyResult();
internal static EmptyResult Instance
{
get { return _singleton; }
}
public async Task ExecuteResultAsync(RequestContext context)
{
}
}
}