我正在使用ASP.NET身份,以下代码登录用户
SignInStatus result = await SignInManager.PasswordSignInAsync(model.EmployeeNo, model.Password, model.RememberMe, shouldLockout: false);
它有效,用户已成功登录。但是,当我检查以下的用户身份时
HttpContext.GetOwinContext().Authentication.User.Identity
其中没有数据?密码登录成功后,如何立即检索用户的身份?
得到了它。要获得它,只需使用以下代码
HttpContext.GetOwinContext().Authentication.AuthenticationResponseGrant.Identity