6 writes to DebugSession
Aspire.Dashboard.Tests (6)
Telemetry\DashboardTelemetrySenderTests.cs (4)
23DebugSession = new DebugSessionOptions() 37DebugSession = new DebugSessionOptions 64DebugSession = new DebugSessionOptions 111DebugSession = new DebugSessionOptions
Telemetry\DashboardTelemetryServiceTests.cs (2)
27DebugSession = new DebugSessionOptions 88DebugSession = new DebugSessionOptions
7 references to DebugSession
Aspire.Dashboard (3)
Configuration\ValidateDashboardOptions.cs (1)
147if (!options.DebugSession.TryParseOptions(out var debugSessionParseErrorMessage))
Telemetry\DashboardTelemetrySender.cs (2)
117if (DebugSessionHelpers.HasDebugSession(_options.Value.DebugSession, out var certificate, out var debugSessionUri, out var token)) 119if (_options.Value.DebugSession.TelemetryOptOut is not true)
Aspire.Dashboard.Tests (4)
Integration\StartupTests.cs (4)
286Assert.Equal(8080, app.DashboardOptionsMonitor.CurrentValue.DebugSession.Port); 288var cert = app.DashboardOptionsMonitor.CurrentValue.DebugSession.GetServerCertificate(); 292Assert.Equal("token!", app.DashboardOptionsMonitor.CurrentValue.DebugSession.Token); 293Assert.Equal(true, app.DashboardOptionsMonitor.CurrentValue.DebugSession.TelemetryOptOut);