1 instantiation of LogEntryKey
Aspire.Hosting (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
125
return
new
(logEntry.Timestamp, logEntry.Content, logEntry.RawContent, logEntry.Type);
14 references to LogEntryKey
Aspire.Hosting (14)
ApplicationModel\ResourceLoggerService.cs (6)
746
Dictionary<
LogEntryKey
, int>? existingLogCounts = null;
762
IncrementCount(existingLogCounts,
LogEntryKey
.Create(existingEntry));
770
var
key =
LogEntryKey
.Create(logEntry);
808
static void IncrementCount(Dictionary<
LogEntryKey
, int> counts,
LogEntryKey
key)
Dcp\DcpResourceWatcher.cs (7)
720
var counts = new Dictionary<
LogEntryKey
, int>();
726
var
key =
LogEntryKey
.Create(logEntry);
779
var
key =
LogEntryKey
.Create(logEntry);
1090
Dictionary<
LogEntryKey
, int> counts,
1096
public Dictionary<
LogEntryKey
, int> Counts { get; } = counts;
src\Shared\ConsoleLogs\LogEntry.cs (1)
123
public static
LogEntryKey
Create(LogEntry logEntry)