protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args) { EventHandler recoveryModeLeave = this.RecoveryModeLeave; if (recoveryModeLeave != null) { recoveryModeLeave(this, args); } }
protected void OnRecoveryModeEnter(DeviceNotificationEventArgs args) { EventHandler recoveryModeEnter = this.RecoveryModeEnter; if (recoveryModeEnter != null) { recoveryModeEnter(this, args); } }
protected void OnDfuDisconnect(DeviceNotificationEventArgs args) { EventHandler dfuDisconnect = this.DfuDisconnect; if (dfuDisconnect != null) { dfuDisconnect(this, args); } }
private void iBootleft(object sender, DeviceNotificationEventArgs args) { if (iLeft == true) { return; } try { //iBoot disconnected. MDIMain.Activate(); this.Invoke((MethodInvoker)Cleanup); } catch (Exception ex) { } }
protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args) { DeviceNotificationEventHandler recoveryModeLeave = this.RecoveryModeLeave; if (recoveryModeLeave != null) { recoveryModeLeave(this, args); } }
protected void OnRecoveryModeEnter(DeviceNotificationEventArgs args) { DeviceNotificationEventHandler recoveryModeEnter = this.RecoveryModeEnter; if (recoveryModeEnter != null) { recoveryModeEnter(this, args); } }
protected void OnDfuDisconnect(DeviceNotificationEventArgs args) { DeviceNotificationEventHandler dfuDisconnect = this.DfuDisconnect; if (dfuDisconnect != null) { dfuDisconnect(this, args); } }