7 implementations of Name
Aspire.Dashboard (7)
Model\ResourceUrlHelpers.cs (1)
66public required string Name { get; set; }
Model\ResourceViewModel.cs (3)
240public string Name { get; } 276string IPropertyGridItem.Name => DisplayName; 379string IPropertyGridItem.Name => Source;
Model\TelemetryPropertyViewModel.cs (1)
10public required string Name { get; init; }
Otlp\Model\OtlpSpanEvent.cs (2)
10public string Name { get; } = name; 20string 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"/>. 35public object Key => Name; 75/// Default implementation checks against <see cref="Name"/> and <see cref="Value"/>. 80=> Name?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true || 88private 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)
142item.IsValueMasked = !_unmaskedItemNames.Contains(item.Name); 263_unmaskedItemNames.Remove(vm.Name); 267_unmaskedItemNames.Add(vm.Name);