コード例 #1
0
 /// <summary>
 /// Suspends the system by shutting power down in hibernation.
 /// </summary>
 public static void HybernateSystem()
 {
     PowerManagementNative.SetSuspendState(true, false, false);
 }
コード例 #2
0
 /// <summary>
 /// Suspends the system by shutting power down in a sleep state.
 /// </summary>
 public static void SleepSystem()
 {
     PowerManagementNative.SetSuspendState(false, false, false);
 }