1 type derived from PocoRoleClaim
Microsoft.AspNetCore.Identity.InMemory.Test (1)
src\Identity\test\Shared\PocoModel\PocoRoleClaim.cs (1)
9
public class PocoRoleClaim :
PocoRoleClaim
<string> { }
1 instantiation of PocoRoleClaim
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 });
3 references to PocoRoleClaim
Microsoft.AspNetCore.Identity.InMemory.Test (3)
InMemoryStore.cs (1)
140
var
entity =
src\Identity\test\Shared\PocoModel\PocoRole.cs (2)
57
public virtual ICollection<
PocoRoleClaim
<TKey>> Claims { get; private set; } = new List<
PocoRoleClaim
<TKey>>();