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)
571Assert.Equal("Test Family Name", transaction.FindClaimValue(ClaimTypes.Surname, expectedIssuer)); 788Assert.Equal("Test Family Name", context.Identity.FindFirst(ClaimTypes.Surname)?.Value); 894Assert.Equal("Test Family Name", transaction.FindClaimValue(ClaimTypes.Surname)); 938Assert.Equal("Test Family Name", transaction.FindClaimValue(ClaimTypes.Surname));
SocialSample (1)
Startup.cs (1)
185o.ClaimActions.MapJsonKey(ClaimTypes.Surname, "family_name");