我在ASP.NET项目中工作,我需要更新身份声明的值。
我阅读:
如何更新ASP.NET身份中的索赔?
我想做类似的事情,但在身份3.0中。
尝试这样的东西?
var identity = new ClaimsIdentity(User.Identity);
identity.RemoveClaim(identity.FindFirst("name"));
identity.AddClaim(new Claim("name", "Jon"));
var authenticationManager = HttpContext.GetOwinContext().Authentication;
authenticationManager.AuthenticationResponseGrant = new AuthenticationResponseGrant(
new ClaimsPrincipal(identity),
new AuthenticationProperties
{
IsPersistent = true
});