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)
792
.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(
ConnectionTypeAuthenticationDefaults
.AuthenticationSchemeFrontend, o => o.RequiredConnectionTypes = [ConnectionType.Frontend])
793
.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(
ConnectionTypeAuthenticationDefaults
.AuthenticationSchemeOtlp, o => o.RequiredConnectionTypes = [ConnectionType.OtlpGrpc, ConnectionType.OtlpHttp])