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

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

namespace System.ComponentModel {
	public enum ListChangedType {
		Reset = 0,
		ItemAdded = 1,
		ItemDeleted = 2,
		ItemMoved = 3,
		ItemChanged = 4,
		PropertyDescriptorAdded = 5,
		PropertyDescriptorDeleted = 6,
		PropertyDescriptorChanged = 7
	}
}