4 implementations of Name
Aspire.Dashboard (4)
Model\ResourceViewModel.cs (3)
230public string Name { get; } 264string IPropertyGridItem.Name => KnownProperty?.DisplayName ?? Name; 341string IPropertyGridItem.Name => Source;
Otlp\Model\OtlpSpanEvent.cs (1)
20string IPropertyGridItem.Name => DurationFormatter.FormatDuration(Time - span.StartTime);
6 references to Name
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"/>. 34public object Key => Name; 74/// Default implementation checks against <see cref="Name"/> and <see cref="Value"/>. 79=> Name?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true || 87private static readonly GridSort<TItem> s_defaultNameSort = GridSort<TItem>.ByAscending(vm => vm.Name); 106/// Gets and sets the sorting behavior of the name column. Defaults to sorting on <see cref="IPropertyGridItem.Name"/>.