5 references to UserEntity
IdentitySample.PasskeyConformance (1)
Program.cs (1)
93var userEntity = options.UserEntity;
Microsoft.AspNetCore.Identity (3)
SignInManager.cs (3)
589claimsIdentity.AddClaim(new Claim(ClaimTypes.NameIdentifier, options.UserEntity.Id)); 590claimsIdentity.AddClaim(new Claim(ClaimTypes.Email, options.UserEntity.Name)); 591claimsIdentity.AddClaim(new Claim(ClaimTypes.Name, options.UserEntity.DisplayName));
Microsoft.AspNetCore.Identity.Test (1)
SignInManagerTest.cs (1)
1425Assert.Same(userEntity, options.UserEntity);