@using Microsoft.AspNetCore.Authentication
@{
ViewData["Title"] = "Products Page";
}
Products
Claims
@foreach (var claim in User.Claims)
{
- @claim.Type
- @claim.Value
}
Properties
@foreach (var prop in (await Context.AuthenticateAsync()).Properties.Items)
{
- @prop.Key
- @prop.Value
}