protected void OnRecoveryModeEnter(DeviceNotificationEventArgs args) { DeviceNotificationEventHandler recoveryModeEnter = RecoveryModeEnter; if (recoveryModeEnter != null) { recoveryModeEnter(this, args); } }
protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args) { DeviceNotificationEventHandler recoveryModeLeave = RecoveryModeLeave; if (recoveryModeLeave != null) { recoveryModeLeave(this, args); } }
protected void OnDfuDisconnect(DeviceNotificationEventArgs args) { DeviceNotificationEventHandler dfuDisconnect = DfuDisconnect; if (dfuDisconnect != null) { dfuDisconnect(this, args); } }