[This is preliminary documentation and is subject to change.]

When overriden in derived class gets whether a ListChanged event is raised when the list changes or an item in the list changes.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
protected abstract bool SupportsChangeNotification { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Protected MustOverride ReadOnly Property SupportsChangeNotification As Boolean
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
protected:
virtual property bool SupportsChangeNotification {
	bool get () abstract;
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract SupportsChangeNotification : bool
JScript
abstract function get SupportsChangeNotification () : boolean

Return Value

true if a ListChanged event is raised when the list changes or when an item changes; otherwise, false.

Implements

IBindingList..::..SupportsChangeNotification

See Also