4 references to ConnectionTypeAuthenticationHandlerOptions
Aspire.Dashboard (4)
Authentication\Connection\ConnectionTypeAuthenticationHandler.cs (2)
10
public class ConnectionTypeAuthenticationHandler : AuthenticationHandler<
ConnectionTypeAuthenticationHandlerOptions
>
12
public ConnectionTypeAuthenticationHandler(IOptionsMonitor<
ConnectionTypeAuthenticationHandlerOptions
> options, ILoggerFactory logger, UrlEncoder encoder) : base(options, logger, encoder)
DashboardWebApplication.cs (2)
644
.AddScheme<
ConnectionTypeAuthenticationHandlerOptions
, ConnectionTypeAuthenticationHandler>(ConnectionTypeAuthenticationDefaults.AuthenticationSchemeFrontend, o => o.RequiredConnectionType = ConnectionType.Frontend)
645
.AddScheme<
ConnectionTypeAuthenticationHandlerOptions
, ConnectionTypeAuthenticationHandler>(ConnectionTypeAuthenticationDefaults.AuthenticationSchemeOtlp, o => o.RequiredConnectionType = ConnectionType.Otlp)