28 references to FindFirstValue
Identity.ExternalClaims (1)
Pages\Account\ExternalLogin.cshtml.cs (1)
102Email = info.Principal.FindFirstValue(ClaimTypes.Email)
IdentitySample.Mvc (1)
Controllers\AccountController.cs (1)
191var email = info.Principal.FindFirstValue(ClaimTypes.Email);
Microsoft.AspNetCore.Identity (7)
SignInManager.cs (7)
338if (await ValidateSecurityStampAsync(user, principal.FindFirstValue(Options.ClaimsIdentity.SecurityStampClaimType))) 361if (await ValidateSecurityStampAsync(user, principal.FindFirstValue(Options.ClaimsIdentity.SecurityStampClaimType))) 739return (result?.Principal != null && result.Principal.FindFirstValue(ClaimTypes.Name) == userId); 1088var providerKey = auth.Principal.FindFirstValue(ClaimTypes.NameIdentifier) ?? auth.Principal.FindFirstValue("sub"); 1255var userId = result.Principal.FindFirstValue(ClaimTypes.Name); 1270LoginProvider = result.Principal.FindFirstValue(ClaimTypes.AuthenticationMethod),
Microsoft.AspNetCore.Identity.FunctionalTests (1)
RegistrationTests.cs (1)
231authenticationMethod = user.FindFirstValue(ClaimTypes.AuthenticationMethod), IdentityConstants.ApplicationScheme);
Microsoft.AspNetCore.Identity.Test (14)
PrincipalExtensionsTest.cs (1)
16Assert.Null(id.FindFirstValue("bogus"));
SignInManagerTest.cs (13)
331It.Is<ClaimsPrincipal>(id => id.FindFirstValue(ClaimTypes.Name) == user.Id), 379It.Is<ClaimsPrincipal>(id => id.FindFirstValue(ClaimTypes.Name) == user.Id), 567It.Is<ClaimsPrincipal>(i => i.FindFirstValue(ClaimTypes.Name) == user.Id 721It.Is<ClaimsPrincipal>(i => i.FindFirstValue(ClaimTypes.AuthenticationMethod) == loginProvider 722&& i.FindFirstValue(ClaimTypes.NameIdentifier) == user.Id), 973It.Is<ClaimsPrincipal>(i => i.FindFirstValue(ClaimTypes.AuthenticationMethod) == loginProvider 974&& i.FindFirstValue("amr") == "mfa" 975&& i.FindFirstValue(ClaimTypes.NameIdentifier) == user.Id), 990It.Is<ClaimsPrincipal>(i => i.FindFirstValue(ClaimTypes.Name) == user.Id 1057It.Is<ClaimsPrincipal>(i => i.FindFirstValue(ClaimTypes.Name) == user.Id 1367(userId == null || id.FindFirstValue(ClaimTypes.NameIdentifier) == userId) && 1368(loginProvider == null || id.FindFirstValue(ClaimTypes.AuthenticationMethod) == loginProvider) && 1369(amr == null || id.FindFirstValue("amr") == amr)),
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
163Email = info.Principal.FindFirstValue(ClaimTypes.Email)!
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
163Email = info.Principal.FindFirstValue(ClaimTypes.Email)!
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
431return principal.FindFirstValue(Options.ClaimsIdentity.UserNameClaimType); 443return principal.FindFirstValue(Options.ClaimsIdentity.UserIdClaimType);