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

AsyncController.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91e6c1656e37f2cfbe05e45fdd9c5886df3383c3 (plain)
1
2
3
4
5
6
7
8
9
10
namespace System.Web.Mvc
{
    // Controller now supports asynchronous operations.
    // This class only exists 
    // a) for backwards compat for callers that derive from it,
    // b) ActionMethodSelector can detect it to bind to ActionAsync/ActionCompleted patterns. 
    public abstract class AsyncController : Controller
    {
    }
}