System.IO.WaitForChangedResult
namespace System.IO
{
public struct WaitForChangedResult
{
public WatcherChangeTypes ChangeType { get; set; }
public string Name { get; set; }
public string OldName { get; set; }
public bool TimedOut { get; set; }
}
}