private static bool IsAnotherInstanceRunningForCurrentUser()
        {
            bool flag = false;

            Program.guardMutex = new Mutex(true, ProductSettings.get_WebAppHostMutex(), out flag);
            return(!flag);
        }