2
私はasp.netプロジェクトで作業しており、IDの主張の価値を更新する必要があります。ASP.NET ID 3.0でクレームを更新するにはどうすればよいですか?
私が読んで:
How to update a claim in ASP.NET Identity?
を私は似ていますが、アイデンティティ3.0で何かをしたいです。
私はasp.netプロジェクトで作業しており、IDの主張の価値を更新する必要があります。ASP.NET ID 3.0でクレームを更新するにはどうすればよいですか?
私が読んで:
How to update a claim in ASP.NET Identity?
を私は似ていますが、アイデンティティ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
});