Example #1
0
 protected virtual void OnLostDevice(object sender, DeviceEventArguments arguments)
 {
     if (LostDevice != null)
     {
         LostDevice(sender, arguments);
     }
 }
Example #2
0
 protected virtual void OnDiscoveredDevice(object sender, DeviceEventArguments arguments)
 {
     if (DiscoveredDevice != null)
     {
         DiscoveredDevice(sender, arguments);
     }
 }
Example #3
0
 private void DeviceListLostDevice(object sender, DeviceEventArguments e)
 {
     e.Device.Dispose();
 }