3 writes to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
380
matchedClaim.
ClaimType
= newClaim.Type;
UserStore.cs (1)
497
matchedClaim.
ClaimType
= newClaim.Type;
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
50
ClaimType
= claim.Type;
7 references to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (6)
UserOnlyStore.cs (3)
376
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.
ClaimType
== claim.Type).ToListAsync(cancellationToken);
398
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.
ClaimType
== claim.Type).ToListAsync(cancellationToken);
518
&& userclaims.
ClaimType
== claim.Type
UserStore.cs (3)
493
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.
ClaimType
== claim.Type).ToListAsync(cancellationToken);
515
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.
ClaimType
== claim.Type).ToListAsync(cancellationToken);
635
&& userclaims.
ClaimType
== claim.Type
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
41
return new Claim(
ClaimType
!, ClaimValue!);