2 implementations of IsValueSensitive
Aspire.Dashboard (2)
Model\ResourceViewModel.cs (2)
250
public bool
IsValueSensitive
=> true;
284
bool IPropertyGridItem.
IsValueSensitive
=> _propertyViewModel.IsValueSensitive;
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)
49
private IEnumerable<IPropertyGridItem> SensitiveGridItems => Resource.Environment.Cast<IPropertyGridItem>().Concat(_displayedResourcePropertyViewModels).Where(static vm => vm.
IsValueSensitive
);