5 references to SetValue
Aspire.Dashboard (5)
Model\TracesViewModel.cs (5)
27
public ResourceKey? ResourceKey { get => _resourceKey; set =>
SetValue
(ref _resourceKey, value); }
28
public SpanType? SpanType { get => _spanType; set =>
SetValue
(ref _spanType, value); }
29
public string FilterText { get => _filterText; set =>
SetValue
(ref _filterText, value); }
30
public int StartIndex { get => _startIndex; set =>
SetValue
(ref _startIndex, value); }
31
public int Count { get => _count; set =>
SetValue
(ref _count, value); }