3 instantiations of WaitForChangedResult
System (3)
services\io\system\io\FileSystemWatcher.cs (2)
885changedResult = new WaitForChangedResult(e.ChangeType, e.Name, false); 900changedResult = new WaitForChangedResult(e.ChangeType, e.Name, e.OldName, false);
services\io\system\io\WaitForChangedResult.cs (1)
27internal static readonly WaitForChangedResult TimedOutResult = new WaitForChangedResult(0, null, true);
9 references to WaitForChangedResult
System (9)
services\io\system\io\FileSystemWatcher.cs (6)
62private WaitForChangedResult changedResult; 1059public WaitForChangedResult WaitForChanged(WatcherChangeTypes changeType) { 1070public WaitForChangedResult WaitForChanged(WatcherChangeTypes changeType, int timeout) { 1075this.changedResult = WaitForChangedResult.TimedOutResult; 1100WaitForChangedResult retVal = WaitForChangedResult.TimedOutResult;
services\io\system\io\WaitForChangedResult.cs (3)
27internal static readonly WaitForChangedResult TimedOutResult = new WaitForChangedResult(0, null, true); 31/// Initializes a new instance of the <see cref='System.IO.WaitForChangedResult'/> class, given the 42/// Initializes a new instance of the <see cref='System.IO.WaitForChangedResult'/> class. This constructor is called when you are waiting