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

IViewPageActivator.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40420ff82e16cc1b8f723fe2e3b1284cb1282064 (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    public interface IViewPageActivator
    {
        object Create(ControllerContext controllerContext, Type type);
    }
}