7 implementations of Name
Aspire.Dashboard (7)
Model\ResourceUrlHelpers.cs (1)
66
public required string
Name
{ get; set; }
Model\ResourceViewModel.cs (3)
240
public string
Name
{ get; }
276
string IPropertyGridItem.
Name
=> DisplayName;
379
string IPropertyGridItem.
Name
=> Source;
Model\TelemetryPropertyViewModel.cs (1)
10
public required string
Name
{ get; init; }
Otlp\Model\OtlpSpanEvent.cs (2)
10
public string
Name
{ get; } = name;
20
string IPropertyGridItem.
Name
=> DurationFormatter.FormatDuration(Time - span.StartTime);
9 references to Name
Aspire.Dashboard (9)
Components\Controls\PropertyGrid.razor.cs (6)
18
/// The property grid has two columns, bound to display strings <see cref="
Name
"/> and <see cref="Value"/>.
35
public object Key =>
Name
;
75
/// Default implementation checks against <see cref="
Name
"/> and <see cref="Value"/>.
80
=>
Name
?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true ||
88
private static readonly GridSort<TItem> s_defaultNameSort = GridSort<TItem>.ByAscending(vm => vm.
Name
);
110
/// Gets and sets the sorting behavior of the name column. Defaults to sorting on <see cref="IPropertyGridItem.
Name
"/>.
Components\Controls\ResourceDetails.razor.cs (3)
142
item.IsValueMasked = !_unmaskedItemNames.Contains(item.
Name
);
263
_unmaskedItemNames.Remove(vm.
Name
);
267
_unmaskedItemNames.Add(vm.
Name
);