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