BlogSharp.MvcExtensions.ControllerFactories.WindsorControllerFactory.GetControllerInstance C# (CSharp) 메소드

GetControllerInstance() 보호된 메소드

Obtains a Instance of a existent controller.
protected GetControllerInstance ( Type controllerType ) : IController
controllerType System.Type The type of controller.
리턴 IController
        protected override IController GetControllerInstance(Type controllerType)
        {
            return kernel.Resolve(controllerType) as IController;
        }