We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ASP.NET HttpContext User.Identity.Name
Platforms Supported: All
Similar to AUTH_USER / REMOTE_USER / LOGON_USER in Server Variables.
AUTH_USER
REMOTE_USER
LOGON_USER
${aspnet-user-identity}
Adding Identity in ASP.NET Core 2.2 using IServiceCollection in ConfigureServices:
IServiceCollection
ConfigureServices
services.AddIdentity<IdentityUser, IdentityRole>() .AddRoles<IdentityRole>() .AddDefaultTokenProviders() .AddDefaultUI();
See also Introduction to Identity on ASP.NET Core (Configuring IdentityOptions)
IdentityOptions
For additional details about the user identity, then one can also use ${aspnet-user-claim}