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

IActionInvoker.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cec2bafd80b2426259c2fa4ea7761fccd16f4f1 (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    public interface IActionInvoker
    {
        bool InvokeAction(ControllerContext controllerContext, string actionName);
    }
}