10 references to Options
Aspire.Dashboard (10)
Components\Layout\MainLayout.razor.cs (10)
179return (Options.CurrentValue.Otlp.GetGrpcEndpointAddress() != null || Options.CurrentValue.Otlp.GetHttpEndpointAddress() != null) && 180Options.CurrentValue.Otlp.AuthMode == OtlpAuthMode.Unsecured && 181!Options.CurrentValue.Otlp.SuppressUnsecuredMessage; 187return Options.CurrentValue.Mcp.GetEndpointAddress() != null && 188!Options.CurrentValue.Mcp.Disabled.GetValueOrDefault() && 189Options.CurrentValue.Mcp.AuthMode == McpAuthMode.Unsecured && 190!Options.CurrentValue.Mcp.SuppressUnsecuredMessage; 196return Options.CurrentValue.Api.Enabled == true && 197Options.CurrentValue.Api.AuthMode == ApiAuthMode.Unsecured;