9 references to Surname
Microsoft.AspNetCore.Antiforgery.Test (1)
DefaultClaimUidExtractorTest.cs (1)
57identity.AddClaim(new Claim(ClaimTypes.Surname, "one"));
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookOptions.cs (1)
40ClaimActions.MapJsonKey(ClaimTypes.Surname, "last_name");
Microsoft.AspNetCore.Authentication.Google (1)
GoogleOptions.cs (1)
33ClaimActions.MapJsonKey(ClaimTypes.Surname, "family_name");
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountOptions.cs (1)
30ClaimActions.MapJsonKey(ClaimTypes.Surname, "surname");
Microsoft.AspNetCore.Authentication.Test (4)
GoogleTests.cs (4)
578Assert.Equal("Test Family Name", transaction.FindClaimValue(ClaimTypes.Surname, expectedIssuer)); 795Assert.Equal("Test Family Name", context.Identity.FindFirst(ClaimTypes.Surname)?.Value); 901Assert.Equal("Test Family Name", transaction.FindClaimValue(ClaimTypes.Surname)); 945Assert.Equal("Test Family Name", transaction.FindClaimValue(ClaimTypes.Surname));
SocialSample (1)
Startup.cs (1)
185o.ClaimActions.MapJsonKey(ClaimTypes.Surname, "family_name");