3 implementations of SupportsChangeNotification
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
385bool IBindingList.SupportsChangeNotification => SupportsChangeNotificationCore;
System.Data.Common (2)
System\Data\DataView.cs (1)
946bool IBindingList.SupportsChangeNotification => true;
System\Data\DataViewManager.cs (1)
210bool IBindingList.SupportsChangeNotification => true;
4 references to SupportsChangeNotification
PresentationFramework (4)
System\Windows\Data\BindingListCollectionView.cs (2)
191if (InternalList != null && InternalList.SupportsChangeNotification) 1888if (InternalList.SupportsChangeNotification)
System\Windows\Data\CollectionView.cs (2)
107((ibl = collection as IBindingList) != null && !ibl.SupportsChangeNotification)) 682((ibl = _sourceCollection as IBindingList) != null && !ibl.SupportsChangeNotification))