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