System.Collections.Specialized.NotifyCollectionChangedAction
namespace System.Collections.Specialized
{
public enum NotifyCollectionChangedAction
{
Add = 0,
Move = 3,
Remove = 1,
Replace = 2,
Reset = 4
}
}