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: 226aa4b10676540613564bafeb78965989087ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

using System.Web.Routing;

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