4 references to ConnectionTypeAuthenticationDefaults
Aspire.Dashboard (4)
Authentication\FrontendCompositeAuthenticationHandler.cs (1)
21
var result = await Context.AuthenticateAsync(
ConnectionTypeAuthenticationDefaults
.AuthenticationSchemeFrontend).ConfigureAwait(false);
Authentication\OtlpCompositeAuthenticationHandler.cs (1)
42
yield return
ConnectionTypeAuthenticationDefaults
.AuthenticationSchemeOtlp;
DashboardWebApplication.cs (2)
671
.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(
ConnectionTypeAuthenticationDefaults
.AuthenticationSchemeFrontend, o => o.RequiredConnectionType = ConnectionType.Frontend)
672
.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(
ConnectionTypeAuthenticationDefaults
.AuthenticationSchemeOtlp, o => o.RequiredConnectionType = ConnectionType.Otlp)