7 references to IN_MOVED_TO
System.IO.FileSystem.Watcher (7)
System\IO\FileSystemWatcher.Linux.cs (7)
256
mask |= Interop.Sys.NotifyEvents.
IN_MOVED_TO
| Interop.Sys.NotifyEvents.IN_MOVED_FROM;
524
Interop.Sys.NotifyEvents.
IN_MOVED_TO
;
568
bool isMatchingMovedTo = (mask & Interop.Sys.NotifyEvents.
IN_MOVED_TO
) != 0 && movedFromCookie == nextEvent.cookie;
643
if ((mask & (Interop.Sys.NotifyEvents.IN_CREATE | Interop.Sys.NotifyEvents.
IN_MOVED_TO
)) != 0)
702
case Interop.Sys.NotifyEvents.
IN_MOVED_TO
:
715
=> matchingFromFound ??= (mask & Interop.Sys.NotifyEvents.
IN_MOVED_TO
) != 0 ? FindMatchingWatchedDirectory(dirs, watcher) : null;
1303
Interop.Sys.NotifyEvents.
IN_MOVED_TO
;