Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a device manager class which manages a number of devices attaced to my PC, some of the devices are USB based devices which are not a standard USB class and as such require custom code, for which I'm using LibUsbDotNet 2.2.8. For each device that is managed an object is created by the manager class which represents the device, all of which are an instance of a class that is specific to the device type but inherits from a common base class. So something like:

Device Manager(Single Instance)

  • USBDeviceClass : BaseDeviceClass
  • USBDevice2Class : BaseDeviceClass
  • ComPortDeviceClass : BaseDeviceClass
  • LPTPortDeviceClass : BaseDeviceClass
  • etc

Everything is working in that when a physical USB device of the correct type is connected the code finds it and creates an object instance to represent it and then the apps works fine (communicating with the device via the device class) until the device is disconnected.

I'm trying to setup the LibUsbDotNet DeviceNotifier to notify the instance of the device class when the physical device is disconnected. The code I'm using is as follows:

public class USBDevice : BaseDevice
{
     public IDeviceNotifier usbDeviceNotifier = DeviceNotifier.OpenDeviceNotifier();

     public USBDevice : base()
     {
          usbDeviceNotifier.Enabled = true;
          usbDeviceNotifier.OnDeviceNotify += OnDeviceNotifier;
     }

     private void OnDeviceNotifier(object sender, DeviceNotifierEventArgs dne)
     {
         // do some stuff...
     }
}

Using this code (based on the example in the LibUsbDotNet documentation) the OnDeviceNotifier method is never called, however if I put the exact same code in the manager class it works! The only difference between the two classes that I can see is that the USBDevice inherits from an abstract base class.

There is nothing in the base class that has anything to do with LibUsb whatsoever, and there are no methods which are being overridden / hidden etc. I've verified that the USBDevice constructor is correctly being called via the debugger.

What am I doing wrong?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.