1 implementation of IAuthenticationHandlerProvider
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationHandlerProvider.cs (1)
12public class AuthenticationHandlerProvider : IAuthenticationHandlerProvider
13 references to IAuthenticationHandlerProvider
Microsoft.AspNetCore.Authentication (2)
AuthenticationMiddleware.cs (2)
49var handlers = context.RequestServices.GetRequiredService<IAuthenticationHandlerProvider>();
Microsoft.AspNetCore.Authentication.Core (8)
AuthenticationCoreServiceCollectionExtensions.cs (1)
26services.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> 27IAuthenticationHandlerProvider handlers, 45public IAuthenticationHandlerProvider Handlers { get; }
AuthenticationServiceImpl.cs (1)
13IAuthenticationHandlerProvider handlers,
Microsoft.AspNetCore.Authentication.Test (3)
AuthenticationMetricsTest.cs (1)
334var authenticationHandlerProvider = new Mock<IAuthenticationHandlerProvider>();
OpenIdConnect\OpenIdConnectConfigurationTests.cs (2)
442var resolver = context.RequestServices.GetRequiredService<IAuthenticationHandlerProvider>();