5 implementations of Value
Aspire.Dashboard (5)
Model\ResourceEndpointHelpers.cs (1)
61
string? IPropertyGridItem.
Value
=> null;
Model\ResourceViewModel.cs (3)
231
public string?
Value
{ get; }
265
string? IPropertyGridItem.
Value
=> _displayValue.Value;
342
string? IPropertyGridItem.
Value
=> Target;
Otlp\Model\OtlpSpanEvent.cs (1)
22
string? 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
"/>.
81
Value
?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true;
89
private static readonly GridSort<TItem> s_defaultValueSort = GridSort<TItem>.ByAscending(vm => vm.
Value
);
113
/// Gets and sets the sorting behavior of the value column. Defaults to sorting on <see cref="IPropertyGridItem.
Value
"/>.