6 references to ConnectionTypeAuthenticationDefaults
Aspire.Dashboard (6)
Authentication\FrontendCompositeAuthenticationHandler.cs (1)
21var result = await Context.AuthenticateAsync(ConnectionTypeAuthenticationDefaults.AuthenticationSchemeFrontend).ConfigureAwait(false);
Authentication\OtlpCompositeAuthenticationHandler.cs (1)
42yield return ConnectionTypeAuthenticationDefaults.AuthenticationSchemeOtlp;
DashboardWebApplication.cs (3)
702.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(ConnectionTypeAuthenticationDefaults.AuthenticationSchemeFrontend, o => o.RequiredConnectionTypes = [ConnectionType.Frontend]) 703.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(ConnectionTypeAuthenticationDefaults.AuthenticationSchemeOtlp, o => o.RequiredConnectionTypes = [ConnectionType.OtlpGrpc, ConnectionType.OtlpHttp]) 704.AddScheme<ConnectionTypeAuthenticationHandlerOptions, ConnectionTypeAuthenticationHandler>(ConnectionTypeAuthenticationDefaults.AuthenticationSchemeMcp, o => o.RequiredConnectionTypes = [ConnectionType.Mcp])
Mcp\McpCompositeAuthenticationHandler.cs (1)
40yield return ConnectionTypeAuthenticationDefaults.AuthenticationSchemeMcp;