8 instantiations of RoleValidator
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
src\Identity\test\Shared\MockHelpers.cs (2)
28roles.Add(new RoleValidator<TRole>()); 58roles.Add(new RoleValidator<TRole>());
Microsoft.AspNetCore.Identity.InMemory.Test (2)
src\Identity\test\Shared\MockHelpers.cs (2)
28roles.Add(new RoleValidator<TRole>()); 58roles.Add(new RoleValidator<TRole>());
Microsoft.AspNetCore.Identity.Test (4)
RoleValidatorTest.cs (2)
12var validator = new RoleValidator<PocoRole>(); 27var validator = new RoleValidator<PocoRole>();
src\Identity\test\Shared\MockHelpers.cs (2)
28roles.Add(new RoleValidator<TRole>()); 58roles.Add(new RoleValidator<TRole>());
5 references to RoleValidator
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
97services.TryAddScoped<IRoleValidator<TRole>, RoleValidator<TRole>>();
Microsoft.AspNetCore.Identity.Test (2)
RoleValidatorTest.cs (2)
12var validator = new RoleValidator<PocoRole>(); 27var validator = new RoleValidator<PocoRole>();
Microsoft.Extensions.Identity.Core (2)
IdentityBuilder.cs (1)
198AddRoleValidator<RoleValidator<TRole>>();
RoleValidator.cs (1)
18/// Creates a new instance of <see cref="RoleValidator{TRole}"/>.