10 writes to Timestamp
Aspire.Dashboard (1)
ConsoleLogs\LogParser.cs (1)
68Timestamp = timestamp,
Aspire.Dashboard.Tests (9)
ConsoleLogsTests\LogEntriesTests.cs (9)
21logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 22logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 3); 23logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 2); 42logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 43logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 2); 44logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 3); 62logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 63logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 2); 64logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 3);
3 references to Timestamp
Aspire.Dashboard (3)
ConsoleLogs\LogEntries.cs (2)
46else if (logEntry.Timestamp != null) 56if (currentTimestamp != null && currentTimestamp <= logEntry.Timestamp)
ConsoleLogs\LogParser.cs (1)
77_parentTimestamp = logEntry.Timestamp;