Example #1
0
        protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
        {
            DeviceNotificationEventHandler recoveryModeLeave = this.RecoveryModeLeave;

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

            if (dfuDisconnect != null)
            {
                dfuDisconnect(this, args);
            }
        }
Example #3
0
        protected void OnRecoveryModeEnter(DeviceNotificationEventArgs args)
        {
            DeviceNotificationEventHandler recoveryModeEnter = this.RecoveryModeEnter;

            if (recoveryModeEnter != null)
            {
                recoveryModeEnter(this, args);
            }
        }
        /// <summary>
        /// Raises the <see>RecoveryModeLeave</see> event.
        /// </summary>
        /// <param name="args">A <see cref="DeviceNotificationEventArgs"/> that contains the event data.</param>
        protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
        {
            EventHandler handler = RecoveryModeLeave;

            if (handler != null)
            {
                handler(this, args);
            }
        }
        /// <summary>
        /// Raises the <see>DfiDisconnect</see> event.
        /// </summary>
        /// <param name="args">A <see cref="DeviceNotificationEventArgs"/> that contains the event data.</param>
        protected void OnDfuDisconnect(DeviceNotificationEventArgs args)
        {
            EventHandler handler = DfuDisconnect;

            if (handler != null)
            {
                handler(this, args);
            }
        }
        /// <summary>
        /// Raises the <see>RecoveryModeLeave</see> event.
        /// </summary>
        /// <param name="args">A <see cref="DeviceNotificationEventArgs"/> that contains the event data.</param>
        protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
        {
            EventHandler handler = RecoveryModeLeave;

            if (handler != null)
            {
                handler(this, args);
            }
        }
        /// <summary>
        /// Raises the <see>DfiDisconnect</see> event.
        /// </summary>
        /// <param name="args">A <see cref="DeviceNotificationEventArgs"/> that contains the event data.</param>
        protected void OnDfuDisconnect(DeviceNotificationEventArgs args)
        {
            EventHandler handler = DfuDisconnect;

            if (handler != null)
            {
                handler(this, args);
            }
        }
Example #8
0
 protected void OnRecoveryModeLeave(DeviceNotificationEventArgs args)
 {
     DeviceNotificationEventHandler recoveryModeLeave = this.RecoveryModeLeave;
     if (recoveryModeLeave != null)
     {
         recoveryModeLeave(this, args);
     }
 }
Example #9
0
 protected void OnRecoveryModeEnter(DeviceNotificationEventArgs args)
 {
     DeviceNotificationEventHandler recoveryModeEnter = this.RecoveryModeEnter;
     if (recoveryModeEnter != null)
     {
         recoveryModeEnter(this, args);
     }
 }
Example #10
0
 protected void OnDfuDisconnect(DeviceNotificationEventArgs args)
 {
     DeviceNotificationEventHandler dfuDisconnect = this.DfuDisconnect;
     if (dfuDisconnect != null)
     {
         dfuDisconnect(this, args);
     }
 }