14 instantiations of PasswordValidator
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
src\Identity\test\Shared\MockHelpers.cs (2)
20mgr.Object.PasswordValidators.Add(new PasswordValidator<TUser>()); 44pwdValidators.Add(new PasswordValidator<TUser>());
Microsoft.AspNetCore.Identity.InMemory.Test (2)
src\Identity\test\Shared\MockHelpers.cs (2)
20mgr.Object.PasswordValidators.Add(new PasswordValidator<TUser>()); 44pwdValidators.Add(new PasswordValidator<TUser>());
Microsoft.AspNetCore.Identity.Test (10)
PasswordValidatorTest.cs (8)
23var validator = new PasswordValidator<PocoUser>(); 39var valid = new PasswordValidator<PocoUser>(); 53var valid = new PasswordValidator<PocoUser>(); 67var valid = new PasswordValidator<PocoUser>(); 84var valid = new PasswordValidator<PocoUser>(); 100var valid = new PasswordValidator<PocoUser>(); 121var valid = new PasswordValidator<PocoUser>(); 146var valid = new PasswordValidator<PocoUser>();
src\Identity\test\Shared\MockHelpers.cs (2)
20mgr.Object.PasswordValidators.Add(new PasswordValidator<TUser>()); 44pwdValidators.Add(new PasswordValidator<TUser>());
16 references to PasswordValidator
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
94services.TryAddScoped<IPasswordValidator<TUser>, PasswordValidator<TUser>>();
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
src\Identity\test\Shared\MockHelpers.cs (1)
43var pwdValidators = new List<PasswordValidator<TUser>>();
Microsoft.AspNetCore.Identity.InMemory.Test (1)
src\Identity\test\Shared\MockHelpers.cs (1)
43var pwdValidators = new List<PasswordValidator<TUser>>();
Microsoft.AspNetCore.Identity.Test (11)
IdentityBuilderTest.cs (2)
189var pwdValidator = provider.GetRequiredService<IPasswordValidator<PocoUser>>() as PasswordValidator<PocoUser>;
PasswordValidatorTest.cs (8)
23var validator = new PasswordValidator<PocoUser>(); 39var valid = new PasswordValidator<PocoUser>(); 53var valid = new PasswordValidator<PocoUser>(); 67var valid = new PasswordValidator<PocoUser>(); 84var valid = new PasswordValidator<PocoUser>(); 100var valid = new PasswordValidator<PocoUser>(); 121var valid = new PasswordValidator<PocoUser>(); 146var valid = new PasswordValidator<PocoUser>();
src\Identity\test\Shared\MockHelpers.cs (1)
43var pwdValidators = new List<PasswordValidator<TUser>>();
Microsoft.Extensions.Identity.Core (2)
IdentityServiceCollectionExtensions.cs (1)
41services.TryAddScoped<IPasswordValidator<TUser>, PasswordValidator<TUser>>();
PasswordValidator.cs (1)
19/// Constructions a new instance of <see cref="PasswordValidator{TUser}"/>.