1 implementation of IsValueSensitive
Aspire.Dashboard (1)
Model\ResourceViewModel.cs (1)
246
public bool
IsValueSensitive
=> true;
3 references to IsValueSensitive
Aspire.Dashboard (3)
Components\Controls\PropertyGrid.razor.cs (2)
21
/// The <see cref="
IsValueSensitive
"/> and <see cref="IsValueMasked"/> properties control masking behavior,
65
/// Only used when <see cref="
IsValueSensitive
"/> is <see langword="true"/>. Otherwise this property
Components\Controls\ResourceDetails.razor.cs (1)
46
private IEnumerable<IPropertyGridItem> SensitiveGridItems => Resource.Environment.Cast<IPropertyGridItem>().Concat(_displayedResourcePropertyViewModels).Where(static vm => vm.
IsValueSensitive
);