1 write to ClaimType
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
134
role.Claims.Add(new PocoRoleClaim<string> {
ClaimType
= claim.Type, ClaimValue = claim.Value, RoleId = role.Id });
2 references to ClaimType
Microsoft.AspNetCore.Identity.InMemory.Test (2)
InMemoryStore.cs (2)
128
var claims = role.Claims.Select(c => new Claim(c.
ClaimType
, c.ClaimValue)).ToList();
142
ur => ur.RoleId == role.Id && ur.
ClaimType
== claim.Type && ur.ClaimValue == claim.Value);