5 references to AuthenticationScheme
Aspire.Dashboard.Tests (1)
OtlpApiKeyAuthenticationHandlerTests.cs (1)
100
await handler.InitializeAsync(new
AuthenticationScheme
("Test", "Test", handler.GetType()), httpContext);
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationSchemeBuilder.cs (1)
49
return new
AuthenticationScheme
(Name, DisplayName, HandlerType);
Microsoft.AspNetCore.Server.HttpSys (1)
MessagePump.cs (1)
48
authentication.AddScheme(new
AuthenticationScheme
(HttpSysDefaults.AuthenticationScheme, displayName: _options.Authentication.AuthenticationDisplayName, handlerType: typeof(AuthenticationHandler)));
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
78
authentication.AddScheme(new
AuthenticationScheme
(IISServerDefaults.AuthenticationScheme, _options.AuthenticationDisplayName, typeof(IISServerAuthenticationHandlerInternal)));
Microsoft.AspNetCore.Server.IISIntegration (1)
IISMiddleware.cs (1)
87
authentication.AddScheme(new
AuthenticationScheme
(IISDefaults.AuthenticationScheme, _options.AuthenticationDisplayName, typeof(AuthenticationHandler)));