如何在ASP.NET身份中的密码登录时获得身份



我正在使用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

相关内容

  • 没有找到相关文章

最新更新