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

IDictionaryNotify

Contract for managing Dictionary adapter notifications.
using System; using System.ComponentModel; namespace Castle.Components.DictionaryAdapter { public interface IDictionaryNotify : INotifyPropertyChanging, INotifyPropertyChanged { bool CanNotify { get; } bool ShouldNotify { get; } bool PropagateChildNotifications { get; set; } IDisposable SuppressNotificationsBlock(); void SuppressNotifications(); void ResumeNotifications(); } }