@using Microsoft.AspNetCore.Authentication

HttpContext.User.Claims (Scheme: @User.Identity.AuthenticationType)

@foreach (var claim in User.Claims) {
@claim.Type
@claim.Value
}

AuthenticationProperties

@foreach (var prop in (await Context.AuthenticateAsync()).Properties.Items) {
@prop.Key
@prop.Value
}