Beispiel #1
0
        protected void OnRecoveryModeEnter(DeviceNotificationEventArgs args)
        {
            DeviceNotificationEventHandler recoveryModeEnter = this.RecoveryModeEnter;

            if (recoveryModeEnter != null)
            {
                recoveryModeEnter(this, args);
            }
        }
Beispiel #2
0
        protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
        {
            DeviceNotificationEventHandler recoveryModeLeave = this.RecoveryModeLeave;

            if (recoveryModeLeave != null)
            {
                recoveryModeLeave(this, args);
            }
        }
Beispiel #3
0
        protected void OnDfuDisconnect(DeviceNotificationEventArgs args)
        {
            DeviceNotificationEventHandler dfuDisconnect = this.DfuDisconnect;

            if (dfuDisconnect != null)
            {
                dfuDisconnect(this, args);
            }
        }