WaitForChangedResult.cs 798 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // System.IO.WaitForChangedResult.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. namespace System.IO {
  11. public struct WaitForChangedResult {
  12. #region Fields
  13. WatcherChangeTypes changeType;
  14. string name;
  15. string oldName;
  16. bool timedOut;
  17. #endregion // Fields
  18. #region Properties
  19. public WatcherChangeTypes ChangeType {
  20. get { return changeType; }
  21. set { changeType = value; }
  22. }
  23. public string Name {
  24. get { return name; }
  25. set { name = value; }
  26. }
  27. public string OldName {
  28. get { return oldName; }
  29. set { oldName = value; }
  30. }
  31. public bool TimedOut {
  32. get { return timedOut; }
  33. set { timedOut = value; }
  34. }
  35. #endregion // Properties
  36. }
  37. }