2 implementations of AddScheme
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationSchemeProvider.cs (1)
166public virtual void AddScheme(AuthenticationScheme scheme)
Microsoft.AspNetCore.Identity.Test (1)
SignInManagerTest.cs (1)
1363public void AddScheme(AuthenticationScheme scheme) => throw new NotImplementedException();
6 references to AddScheme
DynamicSchemes (1)
Controllers\AuthController.cs (1)
35_schemeProvider.AddScheme(new AuthenticationScheme(scheme, scheme, typeof(SimpleAuthHandler)));
Microsoft.AspNetCore.Authentication.Abstractions (1)
IAuthenticationSchemeProvider.cs (1)
81AddScheme(scheme);
Microsoft.AspNetCore.Authentication.Test (1)
DynamicSchemeTests.cs (1)
146auth.AddScheme(scheme);
Microsoft.AspNetCore.Server.HttpSys (1)
MessagePump.cs (1)
40authentication.AddScheme(new AuthenticationScheme(HttpSysDefaults.AuthenticationScheme, displayName: _options.Authentication.AuthenticationDisplayName, handlerType: typeof(AuthenticationHandler)));
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
77authentication.AddScheme(new AuthenticationScheme(IISServerDefaults.AuthenticationScheme, _options.AuthenticationDisplayName, typeof(IISServerAuthenticationHandlerInternal)));
Microsoft.AspNetCore.Server.IISIntegration (1)
IISMiddleware.cs (1)
87authentication.AddScheme(new AuthenticationScheme(IISDefaults.AuthenticationScheme, _options.AuthenticationDisplayName, typeof(AuthenticationHandler)));