Example #1
0
        private static AccountInfo AccountCurrentGet()
        {
            HttpCookie cookie = AccountCookieGet();
            if (string.IsNullOrEmpty(cookie.Value))
            {
                return null;
            }

            CacheCommand<AccountInfo> cache = new CacheCommand<AccountInfo>(cookie.Value);
            return cache.Get();
        }