Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CollectionChangeAction.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 640e36e11ae2b72e5af555a622b7310951945738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.ComponentModel.CollectionChangeAction.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc
//

namespace System.ComponentModel
{
	/// <summary>
	/// Specifies how the collection is changed.
	/// </summary>
	public enum CollectionChangeAction {
		Add = 1,
		Remove = 2,
		Refresh = 3
	}
}