5 writes to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
337matchedClaim.ClaimType = newClaim.Type;
UserStore.cs (1)
452matchedClaim.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)
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); 475&& userclaims.ClaimType == claim.Type
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); 590&& 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!);