2 implementations of IUserConfirmation
IdentitySample.DefaultUI (1)
Startup.cs (1)
11public class BadDude : IUserConfirmation<ApplicationUser>
Microsoft.Extensions.Identity.Core (1)
DefaultUserConfirmation.cs (1)
12public class DefaultUserConfirmation<TUser> : IUserConfirmation<TUser> where TUser : class
12 references to IUserConfirmation
Microsoft.AspNetCore.Identity (6)
IdentityServiceCollectionExtensions.cs (1)
104services.TryAddScoped<IUserConfirmation<TUser>, DefaultUserConfirmation<TUser>>();
SignInManager.cs (5)
30private readonly IUserConfirmation<TUser> _confirmation; 46/// <param name="confirmation">The <see cref="IUserConfirmation{TUser}"/> used check whether a user account is confirmed.</param> 53IUserConfirmation<TUser> confirmation) 77/// <param name="confirmation">The <see cref="IUserConfirmation{TUser}"/> used check whether a user account is confirmed.</param> 85IUserConfirmation<TUser> confirmation,
Microsoft.AspNetCore.Identity.Test (1)
IdentityBuilderTest.cs (1)
100var thingy = services.BuildServiceProvider().GetRequiredService<IUserConfirmation<PocoUser>>() as MyUserConfirmation;
Microsoft.Extensions.Identity.Core (5)
DefaultUserConfirmation.cs (1)
9/// Default implementation of <see cref="IUserConfirmation{TUser}"/>.
IdentityBuilder.cs (2)
276/// Adds a <see cref="IUserConfirmation{TUser}"/> for the <seealso cref="UserType"/>. 282=> AddScoped(typeof(IUserConfirmation<>).MakeGenericType(UserType), typeof(TUserConfirmation));
IdentityServiceCollectionExtensions.cs (1)
44services.TryAddScoped<IUserConfirmation<TUser>, DefaultUserConfirmation<TUser>>();
SignInOptions.cs (1)
24/// Gets or sets a flag indicating whether a confirmed <see cref="IUserConfirmation{TUser}"/> account is required to sign in. Defaults to false.