ResourcePropertySnapshot Properties
RecordProperties6 members
A snapshot of the resource property.
The display name visible in UI.
public string? DisplayName { get; init; }Remarks
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; }Remarks
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; }Remarks
Sensitive properties are masked when displayed in UI and require an explicit user action to reveal.
Gets the optional sort order used when displaying the property in UI.
public int? SortOrder { get; init; }Remarks
Properties with lower values are displayed before properties with higher values.
The value of the property.
public object? Value { get; init; }