internal bool Logout()
        {
            var result = false;

            try
            {
                result           = !_cherwellService.Logout();
                _cherwellService = null;
            }
            catch
            {
            }

            return(result);
        }
示例#2
0
 internal bool Logout()
 {
     return(!_cherwellService.Logout());
 }