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