7 implementations of Name
Aspire.Dashboard (7)
Model\ResourceUrlHelpers.cs (1)
66public required string Name { get; set; }
Model\ResourceViewModel.cs (3)
285public string Name { get; } 321string IPropertyGridItem.Name => DisplayName; 427string 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);
10 references to Name
Aspire.Dashboard (10)
Components\Controls\PropertyGrid.razor.cs (7)
19/// The property grid has two columns, bound to display strings <see cref="Name"/> and <see cref="Value"/>. 36public object Key => Name; 76/// Default implementation checks against <see cref="Name"/> and <see cref="Value"/>. 81=> Name?.Contains(filter, StringComparison.CurrentCultureIgnoreCase) == true || 89private static readonly GridSort<TItem> s_defaultNameSort = GridSort<TItem>.ByAscending(vm => vm.Name); 111/// Gets and sets the sorting behavior of the name column. Defaults to sorting on <see cref="IPropertyGridItem.Name"/>. 175ValueComponents.TryGetValue(item.Key as string ?? item.Name, out var metadata);
Components\Controls\ResourceDetails.razor.cs (3)
147item.IsValueMasked = !_unmaskedItemNames.Contains(item.Name); 287_unmaskedItemNames.Remove(vm.Name); 291_unmaskedItemNames.Add(vm.Name);