BlogSharp.MvcExtensions.ControllerFactories.WindsorControllerFactory.CreateController C# (CSharp) Method

CreateController() public method

Creates a new controller.
public CreateController ( System.Web.Routing.RequestContext context, Type controllerType ) : IController
context System.Web.Routing.RequestContext The context of the creation.
controllerType System.Type The type of controller.
return IController
        public IController CreateController(RequestContext context, Type controllerType)
        {
            return GetControllerInstance(controllerType);
        }