📜  C# .net JwtSecurityTokenHandler jwttoken 声明对象 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:10.687000             🧑  作者: Mango

代码示例6
var identity = HttpContext.User.Identity as ClaimsIdentity;
if (identity != null)
{
    IEnumerable claims = identity.Claims; 
    // or
    identity.FindFirst("ClaimName").Value;

}