UnregisterDeviceNotification() private method

private UnregisterDeviceNotification ( HDEVNOTIFY Handle ) : BOOL
Handle HDEVNOTIFY
return BOOL
Esempio n. 1
0
 protected override void Dispose(bool manual)
 {
     if (!Disposed)
     {
         Functions.UnregisterDeviceNotification(DevNotifyHandle);
         base.Dispose(manual);
     }
 }
Esempio n. 2
0
 protected override void Dispose(bool manual)
 {
     if (this.Disposed)
     {
         return;
     }
     Functions.UnregisterDeviceNotification(this.DevNotifyHandle);
     base.Dispose(manual);
 }