Manos.Mvc.ControllerService.GetControllerType C# (CSharp) Method

GetControllerType() public method

public GetControllerType ( string name ) : Type
name string
return System.Type
        public Type GetControllerType(string name)
        {
            // Look up controller name
            Type t;
            if (ControllerTypes.TryGetValue(name, out t))
                return t;
            return null;
        }