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();
}
}