1 write to EndTime
Aspire.Hosting (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
36EndTime = endTimestamp
4 references to EndTime
Aspire.Hosting (4)
src\Shared\ConsoleLogs\LogEntries.cs (2)
36_pauseViewModels.RemoveAll(pause => pause.EndTime is not null); 192Debug.Assert(pause.EndTime is not null, "Pause should have ended before trying to insert another log.");
src\Shared\ConsoleLogs\LogPauseViewModel.cs (2)
21public bool Contains(DateTime timestamp) => timestamp >= StartTime && (EndTime is null || timestamp < EndTime);