1 implementation of IAuthenticationHandlerProvider
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationHandlerProvider.cs (1)
12public class AuthenticationHandlerProvider : IAuthenticationHandlerProvider
11 references to IAuthenticationHandlerProvider
Microsoft.AspNetCore.Authentication (2)
AuthenticationMiddleware.cs (2)
49var handlers = context.RequestServices.GetRequiredService<IAuthenticationHandlerProvider>();
Microsoft.AspNetCore.Authentication.Core (7)
AuthenticationCoreServiceCollectionExtensions.cs (1)
25services.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> 25public AuthenticationService(IAuthenticationSchemeProvider schemes, IAuthenticationHandlerProvider handlers, IClaimsTransformation transform, IOptions<AuthenticationOptions> options) 41public IAuthenticationHandlerProvider Handlers { get; }
Microsoft.AspNetCore.Authentication.Test (2)
OpenIdConnect\OpenIdConnectConfigurationTests.cs (2)
442var resolver = context.RequestServices.GetRequiredService<IAuthenticationHandlerProvider>();