2 implementations of IsValueSensitive
Aspire.Dashboard (2)
Model\ResourceViewModel.cs (2)
302
public bool
IsValueSensitive
=> true;
336
bool IPropertyGridItem.
IsValueSensitive
=> _propertyViewModel.IsValueSensitive;
4 references to IsValueSensitive
Aspire.Dashboard (4)
Components\Controls\PropertyGrid.razor.cs (2)
22
/// The <see cref="
IsValueSensitive
"/> and <see cref="IsValueMasked"/> properties control masking behavior,
66
/// Only used when <see cref="
IsValueSensitive
"/> is <see langword="true"/>. Otherwise this property
Components\Controls\ResourceDetails.razor.cs (1)
56
private IEnumerable<IPropertyGridItem> SensitiveGridItems => Resource.Environment.Cast<IPropertyGridItem>().Concat(_displayedResourcePropertyViewModels).Where(static vm => vm.
IsValueSensitive
);
Components_Controls_PropertyGrid_razor.g.cs (1)
518
context.
IsValueSensitive