4 instantiations of LogEntryPropertyViewModel
Aspire.Dashboard (4)
Components\Controls\StructuredLogDetails.razor.cs (4)
19_logEntryAttributes.Select(p => new LogEntryPropertyViewModel { Name = p.Key, Value = p.Value }) 23_exceptionAttributes.Select(p => new LogEntryPropertyViewModel { Name = p.Key, Value = p.Value }) 27_contextAttributes.Select(p => new LogEntryPropertyViewModel { Name = p.Key, Value = p.Value }) 31ViewModel.LogEntry.Application.AllProperties().Select(p => new LogEntryPropertyViewModel { Name = p.Key, Value = p.Value })
9 references to LogEntryPropertyViewModel
Aspire.Dashboard (9)
Components\Controls\StructuredLogDetails.razor.cs (9)
18private IQueryable<LogEntryPropertyViewModel> FilteredItems => 22private IQueryable<LogEntryPropertyViewModel> FilteredExceptionItems => 26private IQueryable<LogEntryPropertyViewModel> FilteredContextItems => 30private IQueryable<LogEntryPropertyViewModel> FilteredResourceItems => 36private readonly GridSort<LogEntryPropertyViewModel> _nameSort = GridSort<LogEntryPropertyViewModel>.ByAscending(vm => vm.Name); 37private readonly GridSort<LogEntryPropertyViewModel> _valueSort = GridSort<LogEntryPropertyViewModel>.ByAscending(vm => vm.Value); 90private bool ApplyFilter(LogEntryPropertyViewModel vm)