| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.IO.WindowsWatcher.cs: windows IFileWatcher
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (c) 2004 Novell, Inc. (http://www.novell.com)
- //
- namespace System.IO {
- class WindowsWatcher : IFileWatcher
- {
- private WindowsWatcher ()
- {
- }
-
- public static bool GetInstance (out IFileWatcher watcher)
- {
- throw new NotSupportedException ();
- }
-
- public void StartDispatching (FileSystemWatcher fsw)
- {
- }
- public void StopDispatching (FileSystemWatcher fsw)
- {
- }
- }
- }
|