LgBackLight.HidDevice.HidDevice C# (CSharp) Метод

HidDevice() приватный Метод

private HidDevice ( IntPtr handle, string devicePath, int vendorId, int productId, int versionNumber ) : System
handle System.IntPtr
devicePath string
vendorId int
productId int
versionNumber int
Результат System
        private HidDevice(IntPtr handle, string devicePath, int vendorId, int productId, int versionNumber)
        {
            this.handle = handle;
            DevicePath = devicePath;
            VendorId = vendorId;
            ProductId = productId;
            VersionNumber = versionNumber;
            Hid.HidD_GetPreparsedData(handle, out preparsedData);
        }