9 references to Options
Aspire.Dashboard (9)
Components\Layout\MainLayout.razor.cs (9)
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.AuthMode == McpAuthMode.Unsecured &&
189
!
Options
.CurrentValue.Mcp.SuppressUnsecuredMessage;
195
return
Options
.CurrentValue.Api.Enabled == true &&
196
Options
.CurrentValue.Api.AuthMode == ApiAuthMode.Unsecured;