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