9 references to IdentityPasskeyOptions
Microsoft.AspNetCore.Identity (9)
IdentityBuilderExtensions.cs (3)
48builder.Services.TryAddEnumerable(ServiceDescriptor.Singleton<IPostConfigureOptions<IdentityPasskeyOptions>, PostConfigureIdentityPasskeyOptions>()); 127private sealed class PostConfigureIdentityPasskeyOptions : IPostConfigureOptions<IdentityPasskeyOptions> 136public void PostConfigure(string? name, IdentityPasskeyOptions options)
IdentityServiceCollectionExtensions.cs (3)
103services.TryAddEnumerable(ServiceDescriptor.Singleton<IPostConfigureOptions<IdentityPasskeyOptions>, PostConfigureIdentityPasskeyOptions>()); 192private sealed class PostConfigureIdentityPasskeyOptions : IPostConfigureOptions<IdentityPasskeyOptions> 201public void PostConfigure(string? name, IdentityPasskeyOptions options)
PasskeyEndpointsEndpointRouteBuilderExtensions.cs (1)
107var serverDomain = services.GetRequiredService<IOptions<IdentityPasskeyOptions>>().Value.ServerDomain;
PasskeyHandler.cs (2)
21private readonly IdentityPasskeyOptions _options; 28public PasskeyHandler(UserManager<TUser> userManager, IOptions<IdentityPasskeyOptions> options)