CollectionChangedAction

public enum CollectionChangedAction
Namespace: System.Collections

Specifies the action that caused a collection changed event.

Members

Remarks

The CollectionChangedAction enumeration is used by the NotifyCollectionChangedEventHandler delegate to specify the action that caused the collection changed event.

Typically, you will use the members of this enumeration when implementing observable collections, such as ObservableCollection<T>.

Syntax

public enum CollectionChangedAction { Add, Remove, Replace, Move, Reset }

See Also