コード例 #1
0
 internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }
コード例 #2
0
ファイル: iPhone.cs プロジェクト: rajeshwarn/itouchbrowser
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
コード例 #3
0
ファイル: iPhone.cs プロジェクト: rajeshwarn/itouchbrowser
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
コード例 #4
0
ファイル: iPhone.cs プロジェクト: rajeshwarn/itouchbrowser
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }