5 implementations of Value
Aspire.Dashboard (5)
Model\ResourceEndpointHelpers.cs (1)
61string? IPropertyGridItem.Value => null;
Model\ResourceViewModel.cs (3)
231public string? Value { get; } 265string? IPropertyGridItem.Value => _displayValue.Value; 342string? IPropertyGridItem.Value => Target;
Otlp\Model\OtlpSpanEvent.cs (1)
22string? IPropertyGridItem.Value => Name;
6 references to Value
Aspire.Dashboard (6)
Components\Controls\PropertyGrid.razor.cs (6)
17/// The property grid has two columns, bound to display strings <see cref="Name"/> and <see cref="Value"/>. 42/// Overrides the value to visualize. If <see langword="null"/>, <see cref="Value"/> is visualized. 74/// Default implementation checks against <see cref="Name"/> and <see cref="Value"/>. 80Value?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true; 88private static readonly GridSort<TItem> s_defaultValueSort = GridSort<TItem>.ByAscending(vm => vm.Value); 112/// Gets and sets the sorting behavior of the value column. Defaults to sorting on <see cref="IPropertyGridItem.Value"/>.