4 references to SetValue
Aspire.Dashboard (4)
Model\TracesViewModel.cs (4)
26
public ApplicationKey? ApplicationKey { get => _applicationKey; set =>
SetValue
(ref _applicationKey, value); }
27
public string FilterText { get => _filterText; set =>
SetValue
(ref _filterText, value); }
28
public int StartIndex { get => _startIndex; set =>
SetValue
(ref _startIndex, value); }
29
public int Count { get => _count; set =>
SetValue
(ref _count, value); }