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