Пример #1
0
 private void RebootButton_Click(object sender, EventArgs e)
 {
     try {
         xbCon.Reboot();
     }
     catch {
         ConnectionStatusLabel.Text = "Unable to reach console";
     }
 }
Пример #2
0
 public static void Reboot()
 {
     _exit = true;
     Detach();
     jtag.Reboot(null, null, null, XboxRebootFlags.Warm);
 }
Пример #3
0
 public static void Reboot(this IXboxConsole xbCon)
 {
     xbCon.Reboot(null, null, null, XboxRebootFlags.Cold);
 }
Пример #4
0
 public static void RunXEX(string path)
 {
     jtag.Reboot(path, Path.GetDirectoryName(path), "", XboxRebootFlags.Title);
 }