ACAT.Extensions.Default.UI.Dialogs.ScreenLockForm.unlockDoneProc C# (CSharp) Method

unlockDoneProc() private method

Thread proc to close the form and quit
private unlockDoneProc ( ) : void
return void
        private void unlockDoneProc()
        {
            const int UNLOCK_DONE_PROC_SLEEP_TIME = 1000;

            _animationManager.Stop();
            Thread.Sleep(UNLOCK_DONE_PROC_SLEEP_TIME);

            AuditLog.Audit(new AuditEventScreenLock("close"));

            Windows.CloseForm(this);
        }