WindowsWatcher.cs 519 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // System.IO.WindowsWatcher.cs: windows IFileWatcher
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (c) 2004 Novell, Inc. (http://www.novell.com)
  8. //
  9. namespace System.IO {
  10. class WindowsWatcher : IFileWatcher
  11. {
  12. private WindowsWatcher ()
  13. {
  14. }
  15. public static bool GetInstance (out IFileWatcher watcher)
  16. {
  17. throw new NotSupportedException ();
  18. }
  19. public void StartDispatching (FileSystemWatcher fsw)
  20. {
  21. }
  22. public void StopDispatching (FileSystemWatcher fsw)
  23. {
  24. }
  25. }
  26. }