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