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