5 writes to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
380matchedClaim.ClaimType = newClaim.Type;
UserStore.cs (1)
488matchedClaim.ClaimType = newClaim.Type;
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreWithGenericsTest.cs (2)
220return new IdentityUserClaimWithIssuer { UserId = user.Id, ClaimType = claim.Type, ClaimValue = claim.Value, Issuer = claim.Issuer }; 274ClaimType = other.Type;
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
50ClaimType = claim.Type;
8 references to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (6)
UserOnlyStore.cs (3)
376var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 398var 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)
484var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 506var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 626&& userclaims.ClaimType == claim.Type
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
UserStoreWithGenericsTest.cs (1)
268return new Claim(ClaimType, ClaimValue, null, Issuer);
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
41return new Claim(ClaimType!, ClaimValue!);