7 implementations of Value
Aspire.Dashboard (7)
Model\ResourceUrlHelpers.cs (1)
79string? IPropertyGridItem.Value => null;
Model\ResourceViewModel.cs (3)
241public string? Value { get; } 277string? IPropertyGridItem.Value => _displayValue.Value; 380string? IPropertyGridItem.Value => Target;
Model\TelemetryPropertyViewModel.cs (1)
11public required string Value { get; init; }
Otlp\Model\OtlpSpanEvent.cs (2)
11public string Value { get; } = value; 22string? IPropertyGridItem.Value => Name;
6 references to Value
Aspire.Dashboard (6)
Components\Controls\PropertyGrid.razor.cs (6)
18/// The property grid has two columns, bound to display strings <see cref="Name"/> and <see cref="Value"/>. 43/// Overrides the value to visualize. If <see langword="null"/>, <see cref="Value"/> is visualized. 75/// Default implementation checks against <see cref="Name"/> and <see cref="Value"/>. 81Value?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true; 89private static readonly GridSort<TItem> s_defaultValueSort = GridSort<TItem>.ByAscending(vm => vm.IsValueMasked ? null : vm.Value); 116/// Gets and sets the sorting behavior of the value column. Defaults to sorting on <see cref="IPropertyGridItem.Value"/>.