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/WaitForChangedResult.cs')
-rw-r--r--mcs/class/System/System.IO/WaitForChangedResult.cs48
1 files changed, 48 insertions, 0 deletions
diff --git a/mcs/class/System/System.IO/WaitForChangedResult.cs b/mcs/class/System/System.IO/WaitForChangedResult.cs
new file mode 100644
index 00000000000..e2e33cd95d7
--- /dev/null
+++ b/mcs/class/System/System.IO/WaitForChangedResult.cs
@@ -0,0 +1,48 @@
+//
+// System.IO.WaitForChangedResult.cs
+//
+// Author:
+// Tim Coleman (tim@timcoleman.com)
+//
+// Copyright (C) Tim Coleman, 2002
+//
+
+using System;
+
+namespace System.IO {
+ public struct WaitForChangedResult {
+
+ #region Fields
+
+ WatcherChangeTypes changeType;
+ string name;
+ string oldName;
+ bool timedOut;
+
+ #endregion // Fields
+
+ #region Properties
+
+ public WatcherChangeTypes ChangeType {
+ get { return changeType; }
+ set { changeType = value; }
+ }
+
+ public string Name {
+ get { return name; }
+ set { name = value; }
+ }
+
+ public string OldName {
+ get { return oldName; }
+ set { oldName = value; }
+ }
+
+ public bool TimedOut {
+ get { return timedOut; }
+ set { timedOut = value; }
+ }
+
+ #endregion // Properties
+ }
+}