示例#1
0
        public IdentityInfo(AuthManager authManager)
        {
            var ctx    = HttpContext.Current;
            var author = authManager.FetchRemembered(ctx.Request);

            _isAuthorized = author != null;
            _author       = author;
        }