1 implementation of IAuthenticationHandlerProvider
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationHandlerProvider.cs (1)
12
public class AuthenticationHandlerProvider :
IAuthenticationHandlerProvider
10 references to IAuthenticationHandlerProvider
Microsoft.AspNetCore.Authentication (2)
AuthenticationMiddleware.cs (2)
49
var
handlers = context.RequestServices.GetRequiredService<
IAuthenticationHandlerProvider
>();
Microsoft.AspNetCore.Authentication.Core (8)
AuthenticationCoreServiceCollectionExtensions.cs (1)
26
services.TryAddScoped<
IAuthenticationHandlerProvider
, AuthenticationHandlerProvider>();
AuthenticationHandlerProvider.cs (3)
10
/// Implementation of <see cref="
IAuthenticationHandlerProvider
"/>.
17
/// <param name="schemes">The <see cref="
IAuthenticationHandlerProvider
"/>.</param>
24
/// The <see cref="
IAuthenticationHandlerProvider
"/>.
AuthenticationService.cs (3)
22
/// <param name="handlers">The <see cref="
IAuthenticationHandlerProvider
"/>.</param>
27
IAuthenticationHandlerProvider
handlers,
45
public
IAuthenticationHandlerProvider
Handlers { get; }
AuthenticationServiceImpl.cs (1)
13
IAuthenticationHandlerProvider
handlers,