Watch Aspire live streamsDocsTry Aspire
Watch Aspire live streamsDocsTry

ResourcePropertySnapshot Properties

RecordProperties6 members
A snapshot of the resource property.
DisplayNameSection titled DisplayNamenullablestring?
The display name visible in UI.
public string? DisplayName { get; init; }
If not specified, clients may use the ResourcePropertySnapshot.Name as the display name.
A flag indicating whether the property is highlighted in the UI.
public bool IsHighlighted { get; init; }
Highlighted properties are shown by default even if the client does not otherwise recognize the property name.
Whether this property is considered sensitive or not.
public bool IsSensitive { get; init; }
Sensitive properties are masked when displayed in UI and require an explicit user action to reveal.
The name of the property.
public string Name { get; init; }
SortOrderSection titled SortOrdernullableint?
Gets the optional sort order used when displaying the property in UI.
public int? SortOrder { get; init; }
Properties with lower values are displayed before properties with higher values.
ValueSection titled Valuenullableobject?
The value of the property.
public object? Value { get; init; }