Skip to content

Instantly share code, notes, and snippets.

@skarllot
Created January 25, 2024 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skarllot/5acf6ec9a2c4e1840bb8fe04210d0875 to your computer and use it in GitHub Desktop.
Save skarllot/5acf6ec9a2c4e1840bb8fe04210d0875 to your computer and use it in GitHub Desktop.
Get current Azure logged user
Claim displayName = ClaimsPrincipal.Current.FindFirst(ClaimsPrincipal.Current.Identities.First().NameClaimType);
ViewBag.DisplayName = displayName != null ? displayName.Value : string.Empty;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment