27 references to SignInManager
Microsoft.AspNetCore.Identity (27)
IdentityApiEndpointRouteBuilderExtensions.cs (6)
93var signInManager = sp.GetRequiredService<SignInManager<TUser>>(); 125var signInManager = sp.GetRequiredService<SignInManager<TUser>>(); 263var signInManager = sp.GetRequiredService<SignInManager<TUser>>();
IdentityBuilderExtensions.cs (4)
51/// Adds a <see cref="SignInManager{TUser}"/> for the <see cref="IdentityBuilder.UserType"/>. 59var managerType = typeof(SignInManager<>).MakeGenericType(builder.UserType); 65/// Adds a <see cref="SignInManager{TUser}"/> for the <see cref="IdentityBuilder.UserType"/>. 74var managerType = typeof(SignInManager<>).MakeGenericType(builder.UserType);
IdentityServiceCollectionExtensions.cs (1)
108services.TryAddScoped<SignInManager<TUser>>();
SecurityStampValidator.cs (5)
23/// <param name="signInManager">The <see cref="SignInManager{TUser}"/>.</param> 27public SecurityStampValidator(IOptions<SecurityStampValidatorOptions> options, SignInManager<TUser> signInManager, ISystemClock clock, ILoggerFactory logger) 42/// <param name="signInManager">The <see cref="SignInManager{TUser}"/>.</param> 44public SecurityStampValidator(IOptions<SecurityStampValidatorOptions> options, SignInManager<TUser> signInManager, ILoggerFactory logger) 60public SignInManager<TUser> SignInManager { get; }
SignInManager.cs (7)
42/// Creates a new instance of <see cref="SignInManager{TUser}"/>. 55ILogger<SignInManager<TUser>> logger, 566$"Make sure to call '{nameof(SignInManager<>)}.{nameof(MakePasskeyCreationOptionsAsync)}()' to initiate a passkey attestation."); 571$"This may indicate that you have not previously called '{nameof(SignInManager<>)}.{nameof(MakePasskeyCreationOptionsAsync)}()'."); 610$"Make sure to call '{nameof(SignInManager<>)}.{nameof(MakePasskeyRequestOptionsAsync)}()' to initiate a passkey assertion."); 615$"This may indicate that you have not previously called '{nameof(SignInManager<>)}.{nameof(MakePasskeyRequestOptionsAsync)}()'."); 1355if (GetType() == typeof(SignInManager<TUser>))
TwoFactorSecurityStampValidator.cs (4)
22/// <param name="signInManager">The <see cref="SignInManager{TUser}"/>.</param> 26public TwoFactorSecurityStampValidator(IOptions<SecurityStampValidatorOptions> options, SignInManager<TUser> signInManager, ISystemClock clock, ILoggerFactory logger) : base(options, signInManager, clock, logger) 33/// <param name="signInManager">The <see cref="SignInManager{TUser}"/>.</param> 35public TwoFactorSecurityStampValidator(IOptions<SecurityStampValidatorOptions> options, SignInManager<TUser> signInManager, ILoggerFactory logger) : base(options, signInManager, logger)