5 implementations of IPropertyGridItem
Aspire.Dashboard (5)
Model\ResourceUrlHelpers.cs (1)
63
public sealed class DisplayedUrl :
IPropertyGridItem
Model\ResourceViewModel.cs (3)
201
public sealed class EnvironmentVariableViewModel :
IPropertyGridItem
223
public sealed class ResourcePropertyViewModel :
IPropertyGridItem
321
public sealed record class VolumeViewModel(int index, string Source, string Target, string MountType, bool IsReadOnly) :
IPropertyGridItem
Model\TelemetryPropertyViewModel.cs (1)
8
public sealed class TelemetryPropertyViewModel :
IPropertyGridItem
16 references to IPropertyGridItem
Aspire.Dashboard (16)
Components\Controls\PropertyGrid.razor.cs (3)
84
public partial class PropertyGrid<TItem> where TItem :
IPropertyGridItem
110
/// Gets and sets the sorting behavior of the name column. Defaults to sorting on <see cref="
IPropertyGridItem
.Name"/>.
116
/// Gets and sets the sorting behavior of the value column. Defaults to sorting on <see cref="
IPropertyGridItem
.Value"/>.
Model\ResourceUrlHelpers.cs (2)
79
string?
IPropertyGridItem
.Value => null;
81
object
IPropertyGridItem
.Key => Index;
Model\ResourceViewModel.cs (6)
237
string
IPropertyGridItem
.Name => KnownProperty?.DisplayName ?? Name;
238
string?
IPropertyGridItem
.Value => _displayValue.Value;
240
object
IPropertyGridItem
.Key => _key;
323
string
IPropertyGridItem
.Name => Source;
324
string?
IPropertyGridItem
.Value => Target;
328
object
IPropertyGridItem
.Key => index;
Otlp\Model\OtlpSpanEvent.cs (5)
8
public class OtlpSpanAttributeItem(string name, string value) :
IPropertyGridItem
14
public class OtlpSpanEvent(OtlpSpan span) :
IPropertyGridItem
20
string
IPropertyGridItem
.Name => DurationFormatter.FormatDuration(Time - span.StartTime);
21
object
IPropertyGridItem
.Key => InternalId;
22
string?
IPropertyGridItem
.Value => Name;