Click or drag to resize
NotifyCollectionChangedAction Enumeration
Describes the action that caused a System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged event.

Namespace: System.Collections.Specialized
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public enum NotifyCollectionChangedAction
Members
  Member nameValueDescription
Add0 One or more items were added to the collection.
Remove1 One or more items were removed from the collection.
Replace2 One or more items were replaced in the collection.
Move3 One or more items were moved within the collection.
Reset4 The content of the collection changed dramatically.
See Also