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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.IO/WatcherChangeTypes.cs')
-rw-r--r--mcs/class/System/System.IO/WatcherChangeTypes.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/mcs/class/System/System.IO/WatcherChangeTypes.cs b/mcs/class/System/System.IO/WatcherChangeTypes.cs
new file mode 100644
index 00000000000..5455c9921bc
--- /dev/null
+++ b/mcs/class/System/System.IO/WatcherChangeTypes.cs
@@ -0,0 +1,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
+ }
+}