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