15 writes to SelectedLogEntry
Aspire.Dashboard (2)
Components\Pages\StructuredLogs.razor.cs (2)
308
PageViewModel.
SelectedLogEntry
= logEntryViewModel;
320
PageViewModel.
SelectedLogEntry
= null;
Aspire.Dashboard.Tests (13)
Model\StructuredLogsPageViewModelTests.cs (13)
25
vm.
SelectedLogEntry
= null;
37
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Warning, "Hello world");
49
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "Hello world");
61
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Warning, "Hello world");
74
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Trace, "any message");
86
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "Hello world");
98
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "Hello World");
110
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "some message");
124
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "some message");
138
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "Hello world");
158
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "Hello world");
178
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Information, "Hello world");
198
vm.
SelectedLogEntry
= await CreateLogDetailsViewModelAsync(repositoryContext.Repository, LogLevel.Warning, "Hello world");
5 references to SelectedLogEntry
Aspire.Dashboard (5)
Components\Pages\StructuredLogs.razor.cs (5)
297
if (PageViewModel.
SelectedLogEntry
?.LogEntry.InternalId == entry.InternalId)
387
if (PageViewModel.
SelectedLogEntry
is null)
410
if (entry.InternalId == PageViewModel.
SelectedLogEntry
?.LogEntry.InternalId)
607
if (
SelectedLogEntry
is null)
612
var entry =
SelectedLogEntry
.LogEntry;