<PackageReference Include="Castle.Core" Version="4.0.0-alpha001" />

SuppressNotificationsAttribute

Suppress property change notifications.
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; } } }