5 writes to ClaimValue
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
336matchedClaim.ClaimValue = newClaim.Value;
UserStore.cs (1)
451matchedClaim.ClaimValue = newClaim.Value;
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreWithGenericsTest.cs (2)
220return new IdentityUserClaimWithIssuer { UserId = user.Id, ClaimType = claim.Type, ClaimValue = claim.Value, Issuer = claim.Issuer }; 273ClaimValue = other.Value;
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
51ClaimValue = claim.Value;
8 references to ClaimValue
Microsoft.AspNetCore.Identity.EntityFrameworkCore (6)
UserOnlyStore.cs (3)
333var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 355var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 474where userclaims.ClaimValue == claim.Value
UserStore.cs (3)
448var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 470var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 589where userclaims.ClaimValue == claim.Value
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!);