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