Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ActionResult.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dc190c042ac5f583aa29eb79df87de58e3eebe5 (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    public abstract class ActionResult
    {
        public abstract void ExecuteResult(ControllerContext context);
    }
}