1 implementation of IAuthenticationSchemeProvider
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationSchemeProvider.cs (1)
13public class AuthenticationSchemeProvider : IAuthenticationSchemeProvider
19 references to IAuthenticationSchemeProvider
Microsoft.AspNetCore (1)
WebApplicationBuilder.cs (1)
435if (serviceProviderIsService?.IsService(typeof(IAuthenticationSchemeProvider)) is true)
Microsoft.AspNetCore.Authentication (4)
AuthenticationMiddleware.cs (4)
21/// <param name="schemes">The <see cref="IAuthenticationSchemeProvider"/>.</param> 22public AuthenticationMiddleware(RequestDelegate next, IAuthenticationSchemeProvider schemes) 32/// Gets or sets the <see cref="IAuthenticationSchemeProvider"/>. 34public IAuthenticationSchemeProvider Schemes { get; set; }
Microsoft.AspNetCore.Authentication.Core (8)
AuthenticationCoreServiceCollectionExtensions.cs (1)
27services.TryAddSingleton<IAuthenticationSchemeProvider, AuthenticationSchemeProvider>();
AuthenticationHandlerProvider.cs (2)
18public AuthenticationHandlerProvider(IAuthenticationSchemeProvider schemes) 26public IAuthenticationSchemeProvider Schemes { get; }
AuthenticationSchemeProvider.cs (1)
11/// Implements <see cref="IAuthenticationSchemeProvider"/>.
AuthenticationService.cs (3)
21/// <param name="schemes">The <see cref="IAuthenticationSchemeProvider"/>.</param> 26IAuthenticationSchemeProvider schemes, 40public IAuthenticationSchemeProvider Schemes { get; }
AuthenticationServiceImpl.cs (1)
12IAuthenticationSchemeProvider schemes,
Microsoft.AspNetCore.Identity (2)
SignInManager.cs (2)
33private readonly IAuthenticationSchemeProvider _schemes; 56IAuthenticationSchemeProvider schemes,
Microsoft.AspNetCore.Server.IISIntegration (4)
IISMiddleware.cs (4)
45/// <param name="authentication">The <see cref="IAuthenticationSchemeProvider"/>.</param> 52IAuthenticationSchemeProvider authentication, 66/// <param name="authentication">The <see cref="IAuthenticationSchemeProvider"/>.</param> 73IAuthenticationSchemeProvider authentication,