27 references to WatcherChangeTypes
System (27)
services\io\system\io\FileSystemEventArgs.cs (4)
18private WatcherChangeTypes changeType; 25public FileSystemEventArgs(WatcherChangeTypes changeType, string directory, string name) 41/// one of the <see cref='System.IO.WatcherChangeTypes'/> 45public WatcherChangeTypes ChangeType {
services\io\system\io\FileSystemWatcher.cs (18)
576NotifyRenameEventArgs(WatcherChangeTypes.Renamed, name, oldName); 583NotifyRenameEventArgs(WatcherChangeTypes.Renamed, name, oldName); 589NotifyRenameEventArgs(WatcherChangeTypes.Renamed, null, oldName); 605NotifyRenameEventArgs(WatcherChangeTypes.Renamed, null, oldName); 767OnCreated(new FileSystemEventArgs(WatcherChangeTypes.Created, directory, name)); 770OnDeleted(new FileSystemEventArgs(WatcherChangeTypes.Deleted, directory, name)); 773OnChanged(new FileSystemEventArgs(WatcherChangeTypes.Changed, directory, name)); 798private void NotifyRenameEventArgs(WatcherChangeTypes action, string name, string oldName) { 1059public WaitForChangedResult WaitForChanged(WatcherChangeTypes changeType) { 1070public WaitForChangedResult WaitForChanged(WatcherChangeTypes changeType, int timeout) { 1078if ((changeType & WatcherChangeTypes.Created) != 0) { 1081if ((changeType & WatcherChangeTypes.Deleted) != 0) { 1084if ((changeType & WatcherChangeTypes.Changed) != 0) { 1087if ((changeType & WatcherChangeTypes.Renamed) != 0) { 1119if ((changeType & WatcherChangeTypes.Created) != 0) { 1122if ((changeType & WatcherChangeTypes.Deleted) != 0) { 1125if ((changeType & WatcherChangeTypes.Changed) != 0) { 1128if ((changeType & WatcherChangeTypes.Renamed) != 0) {
services\io\system\io\RenamedEventArgs.cs (1)
29public RenamedEventArgs(WatcherChangeTypes changeType, string directory, string name, string oldName)
services\io\system\io\WaitForChangedResult.cs (4)
17private WatcherChangeTypes changeType; 36internal WaitForChangedResult(WatcherChangeTypes changeType, string name, bool timedOut) 46internal WaitForChangedResult(WatcherChangeTypes changeType, string name, string oldName, bool timedOut) { 58public WatcherChangeTypes ChangeType {