1 write to StartTime
Aspire.Dashboard (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
37StartTime = startTimestamp,
6 references to StartTime
Aspire.Dashboard (4)
Components\Pages\ConsoleLogs.razor.cs (1)
955Logger.LogDebug("Updating pause log entry for {Resource} starting at {StartTimestamp} with end of {EndTimestamp}.", subscription.Resource.Name, pause.StartTime, timestamp);
src\Shared\ConsoleLogs\LogPauseViewModel.cs (3)
22public bool Contains(DateTime timestamp) => timestamp >= StartTime && (EndTime is null || timestamp < EndTime); 33FormatHelpers.FormatTimeWithOptionalDate(timeProvider, pause.StartTime, MillisecondsDisplay.Truncated), 38FormatHelpers.FormatTimeWithOptionalDate(timeProvider, pause.StartTime, MillisecondsDisplay.Truncated),
Aspire.Dashboard.Components.Tests (2)
Pages\ConsoleLogsTests.cs (2)
733FormatHelpers.FormatTimeWithOptionalDate(timeProvider, pauseLog.Pause!.StartTime, MillisecondsDisplay.Truncated), 758FormatHelpers.FormatTimeWithOptionalDate(timeProvider, pause.StartTime, MillisecondsDisplay.Truncated),