// サインアウト public static void UserSigningOut() { // TimeCountのインスタンス生成(1: サインアウト) TimeCount tc = new TimeCount(1); // 0.5s待機後にカウント処理 System.Threading.Thread.Sleep(500); tc.Run_Count(); }
// リブート public static void SystemReboot() { // TimeCountのインスタンス生成(2: サインアウト) TimeCount tc = new TimeCount(2); // 0.5s待機後にカウント処理 System.Threading.Thread.Sleep(500); tc.Run_Count(); }
// シャットダウン public static void SystemShutdown() { // TimeCountのインスタンス生成(0: シャットダウン) TimeCount tc = new TimeCount(0); // 0.5s待機後にカウント処理 System.Threading.Thread.Sleep(500); tc.Run_Count(); }