1 type derived from SecurityStampValidator
Microsoft.AspNetCore.Identity (1)
TwoFactorSecurityStampValidator.cs (1)
16public class TwoFactorSecurityStampValidator<TUser> : SecurityStampValidator<TUser>, ITwoFactorSecurityStampValidator where TUser : class
6 references to SecurityStampValidator
Microsoft.AspNetCore.Identity (6)
IdentityBuilderExtensions.cs (1)
45builder.Services.AddScoped(typeof(ISecurityStampValidator), typeof(SecurityStampValidator<>).MakeGenericType(builder.UserType));
IdentityServiceCollectionExtensions.cs (1)
101services.TryAddScoped<ISecurityStampValidator, SecurityStampValidator<TUser>>();
SecurityStampValidator.cs (2)
20/// Creates a new instance of <see cref="SecurityStampValidator{TUser}"/>. 39/// Creates a new instance of <see cref="SecurityStampValidator{TUser}"/>.
TwoFactorSecurityStampValidator.cs (2)
19/// Creates a new instance of <see cref="SecurityStampValidator{TUser}"/>. 30/// Creates a new instance of <see cref="SecurityStampValidator{TUser}"/>.