Example #1
0
 public static void ShutDownSystem()
 {
     WinApi.ExitWindowsEx(WinApi.ExitWindowsAction.Shutdown, 0);
 }
Example #2
0
 public static void RestartSystem()
 {
     WinApi.ExitWindowsEx(WinApi.ExitWindowsAction.Reboot, 0);
 }
Example #3
0
 public static void SignOut()
 {
     WinApi.ExitWindowsEx(WinApi.ExitWindowsAction.Force, 0);
 }