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

WatcherChangeTypes.cs « System.IO « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5455c9921bc8b26bb7369b309944b7f47c093d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 
// System.IO.WatcherChangeTypes.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2002
//

using System;

namespace System.IO {
	[Flags]
	[Serializable]
	public enum WatcherChangeTypes {
		All,
		Changed,
		Created,
		Deleted,
		Renamed
	}
}