Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
WaitForChangedResult.cs
Go to the documentation of this file.
1namespace System.IO;
2
4{
5 internal static readonly WaitForChangedResult TimedOutResult = new WaitForChangedResult((WatcherChangeTypes)0, null, null, timedOut: true);
6
7 public WatcherChangeTypes ChangeType { get; set; }
8
9 public string? Name { get; set; }
10
11 public string? OldName { get; set; }
12
13 public bool TimedOut { get; set; }
14
15 internal WaitForChangedResult(WatcherChangeTypes changeType, string name, string oldName, bool timedOut)
16 {
17 ChangeType = changeType;
18 Name = name;
19 OldName = oldName;
20 TimedOut = timedOut;
21 }
22}
WaitForChangedResult(WatcherChangeTypes changeType, string name, string oldName, bool timedOut)
static readonly WaitForChangedResult TimedOutResult