2 writes to Timestamp
Aspire.Dashboard (2)
src\Shared\ConsoleLogs\LogEntry.cs (2)
30Timestamp = startTimestamp, 50Timestamp = timestamp,
10 references to Timestamp
Aspire.Dashboard (9)
Components\Pages\ConsoleLogs.razor.cs (2)
508if (logEntry.Timestamp is not null && timestampFilterDate is not null && !(logEntry.Timestamp > timestampFilterDate))
src\Shared\ConsoleLogs\LogEntries.cs (7)
61if (logEntry.Timestamp is null) 68if (pauseVM.Contains(logEntry.Timestamp.Value)) 84Debug.Assert(logLine.Timestamp == null || logLine.Timestamp.Value.Kind == DateTimeKind.Utc, "Timestamp should always be UTC."); 116if (logEntry.Timestamp == null || logEntry.Type is LogEntryType.Pause) 141if (logEntry.Timestamp.Value >= current.Timestamp.Value) 219if (_earliestTimestampIndex == null && logEntry.Timestamp != null)
Aspire.Dashboard.Tests (1)
ConsoleLogsTests\LogEntriesTests.cs (1)
68Assert.Null(entry.Timestamp);