10 references to GivenName
Microsoft.AspNetCore.Antiforgery.Test (1)
DefaultClaimUidExtractorTest.cs (1)
56identity.AddClaim(new Claim(ClaimTypes.GivenName, "some"));
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookOptions.cs (1)
38ClaimActions.MapJsonKey(ClaimTypes.GivenName, "first_name");
Microsoft.AspNetCore.Authentication.Google (1)
GoogleOptions.cs (1)
32ClaimActions.MapJsonKey(ClaimTypes.GivenName, "given_name");
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountOptions.cs (1)
29ClaimActions.MapJsonKey(ClaimTypes.GivenName, "givenName");
Microsoft.AspNetCore.Authentication.Test (4)
GoogleTests.cs (4)
570Assert.Equal("Test Given Name", transaction.FindClaimValue(ClaimTypes.GivenName, expectedIssuer)); 789Assert.Equal("Test Given Name", context.Identity.FindFirst(ClaimTypes.GivenName)?.Value); 893Assert.Equal("Test Given Name", transaction.FindClaimValue(ClaimTypes.GivenName)); 937Assert.Equal("Test Given Name", transaction.FindClaimValue(ClaimTypes.GivenName));
SocialSample (2)
Startup.cs (2)
75o.ClaimActions.Remove(ClaimTypes.GivenName); 184o.ClaimActions.MapJsonKey(ClaimTypes.GivenName, "given_name");