5 writes to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
394=> new TRoleClaim { RoleId = role.Id, ClaimType = claim.Type, ClaimValue = claim.Value };
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreWithGenericsTest.cs (2)
258return new IdentityRoleClaimWithIssuer { RoleId = role.Id, ClaimType = claim.Type, ClaimValue = claim.Value, Issuer = claim.Issuer }; 291ClaimType = other.Type;
Microsoft.Extensions.Identity.Stores (2)
IdentityRoleClaim.cs (1)
50ClaimType = other?.Type;
RoleStoreBase.cs (1)
247=> new TRoleClaim { RoleId = role.Id, ClaimType = claim.Type, ClaimValue = claim.Value };
4 references to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
RoleStore.cs (2)
341return await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id)).Select(c => new Claim(c.ClaimType!, c.ClaimValue!)).ToListAsync(cancellationToken); 373var claims = await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id) && rc.ClaimValue == claim.Value && rc.ClaimType == claim.Type).ToListAsync(cancellationToken);
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
UserStoreWithGenericsTest.cs (1)
285return new Claim(ClaimType, ClaimValue, null, Issuer);
Microsoft.Extensions.Identity.Stores (1)
IdentityRoleClaim.cs (1)
41return new Claim(ClaimType!, ClaimValue!);