21 lines
590 B
C#
21 lines
590 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.Mvc.Actions;
|
|
|
|
namespace Microsoft.AspNet.Mvc
|
|
{
|
|
public abstract class ActionResult : IActionResult
|
|
{
|
|
public virtual Task ExecuteResultAsync(ActionContext context)
|
|
{
|
|
ExecuteResult(context);
|
|
return Task.FromResult(true);
|
|
}
|
|
|
|
public virtual void ExecuteResult(ActionContext context)
|
|
{
|
|
}
|
|
}
|
|
} |