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);
        }