| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // System.IO.WaitForChangedResult.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // 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
- }
- }
|