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/IFileWatcher.cs')
-rw-r--r--mcs/class/System/System.IO/IFileWatcher.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/System/System.IO/IFileWatcher.cs b/mcs/class/System/System.IO/IFileWatcher.cs
index 7ed4878fa6d..d7e6055a1d5 100644
--- a/mcs/class/System/System.IO/IFileWatcher.cs
+++ b/mcs/class/System/System.IO/IFileWatcher.cs
@@ -30,8 +30,9 @@
namespace System.IO {
interface IFileWatcher {
- void StartDispatching (FileSystemWatcher fsw);
- void StopDispatching (FileSystemWatcher fsw);
+ void StartDispatching (object fsw);
+ void StopDispatching (object fsw);
+ void Dispose (object fsw);
}
}