7 references to DashboardOptions
Aspire.Dashboard (7)
Components\Dialogs\McpServerDialog.razor.cs (7)
46if ((DashboardOptions.Value.Mcp.PublicUrl ?? DashboardOptions.Value.Mcp.EndpointUrl) is { Length: > 0 } mcpUrl) 64if (DashboardOptions.Value.Mcp.AuthMode == McpAuthMode.ApiKey) 66_mcpConfigProperties.Add(new McpConfigPropertyViewModel { Name = $"{McpApiKeyAuthenticationHandler.ApiKeyHeaderName} (header)", Value = DashboardOptions.Value.Mcp.PrimaryApiKey! }); 77private bool McpEnabled => !DashboardOptions.Value.Mcp.Disabled.GetValueOrDefault() && !string.IsNullOrEmpty(_mcpUrl); 85if (DashboardOptions.Value.Mcp.AuthMode == McpAuthMode.ApiKey) 89[McpApiKeyAuthenticationHandler.ApiKeyHeaderName] = DashboardOptions.Value.Mcp.PrimaryApiKey!