public async Task SignOut()
        {
            try
            {
                await _connectionManager.Logout();

                Logout();
                _messengerService.SendAppResetNotification();
            }
            catch (HttpException ex)
            {
                _logger.ErrorException("SignOut()", ex);
            }
        }