CorsairLinkPlusPlus.Common.Registry.RegisteredController.RegisteredController C# (CSharp) Method

RegisteredController() private method

private RegisteredController ( Type type, string name ) : CorsairLinkPlusPlus.Common.Controller
type System.Type
name string
return CorsairLinkPlusPlus.Common.Controller
        internal RegisteredController(Type type, string name)
        {
            this.controllerName = name;
            this.ctor = type.GetConstructor(new Type[0]);
            this.type = type;
        }