Esempio n. 1
0
        protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
        {
            EventHandler recoveryModeLeave = this.RecoveryModeLeave;

            if (recoveryModeLeave != null)
            {
                recoveryModeLeave(this, args);
            }
        }
Esempio n. 2
0
        protected void OnDfuDisconnect(DeviceNotificationEventArgs args)
        {
            EventHandler dfuDisconnect = this.DfuDisconnect;

            if (dfuDisconnect != null)
            {
                dfuDisconnect(this, args);
            }
        }
Esempio n. 3
0
        protected unsafe void OnRecoveryModeEnter(DeviceNotificationEventArgs args)
        {
            EventHandler recoveryModeEnter = this.RecoveryModeEnter;

            this.RecoveryDevice = args.Device;
            if (recoveryModeEnter != null)
            {
                recoveryModeEnter(this, args);
            }
        }
Esempio n. 4
0
 protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
 {
     EventHandler recoveryModeLeave = this.RecoveryModeLeave;
     if (recoveryModeLeave != null)
     {
         recoveryModeLeave(this, args);
     }
 }
Esempio n. 5
0
 protected unsafe void OnRecoveryModeEnter(DeviceNotificationEventArgs args)
 {
     EventHandler recoveryModeEnter = this.RecoveryModeEnter;
     this.RecoveryDevice = args.Device;
     if (recoveryModeEnter != null)
     {
         recoveryModeEnter(this, args);
     }
 }
Esempio n. 6
0
 protected void OnDfuDisconnect(DeviceNotificationEventArgs args)
 {
     EventHandler dfuDisconnect = this.DfuDisconnect;
     if (dfuDisconnect != null)
     {
         dfuDisconnect(this, args);
     }
 }