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