<PackageReference Include="Castle.Core" Version="4.1.0" />

SuppressNotificationsAttribute

using System; namespace Castle.Components.DictionaryAdapter { [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] public class SuppressNotificationsAttribute : DictionaryBehaviorAttribute, IPropertyDescriptorInitializer, IDictionaryBehavior { public void Initialize(PropertyDescriptor propertyDescriptor, object[] behaviors) { propertyDescriptor.SuppressNotifications = true; } } }