//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.ComponentModel;
using System.Diagnostics;
using System;
///
/// Specifies how the collection is changed.
///
public enum CollectionChangeAction {
///
/// Specifies that an element is added to the collection.
///
Add = 1,
///
/// Specifies that an element is removed from the collection.
///
Remove = 2,
///
/// Specifies that the entire collection has changed.
///
Refresh = 3
}
}