usermanager类中的aspnetidentity类中的更新,没有更新owin iuserclaimsprincipal。
更新
测试要复制:
- 使用ASPNET身份的登录页面,登录以下
密码signinasync 明确打电话以更新安全邮票 更新EcurityStampasync
然后验证Context.user.Identity-我希望看到更新的安全邮票。但这似乎是旧的。
如何更新katana cookie声称如果我们有以下代码
await _signInManager.PasswordSignInAsync()
if (result.Succeeded)
{
_userManager.UpdateSecurityStampAsync()
}
signManager具有相同的方法更新。
//Refresh the cookie to update securitystamp on authenticationmanager responsegrant to the current request
await _signInManager.RefreshSignInAsync(user)
;