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

IControllerActivator.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38bece0e6eb4daca18f5121ead97e2aba4eaef1c (plain)
1
2
3
4
5
6
7
8
9
using System.Web.Routing;

namespace System.Web.Mvc
{
    public interface IControllerActivator
    {
        IController Create(RequestContext requestContext, Type controllerType);
    }
}