7 references to IN_MOVED_TO
System.IO.FileSystem.Watcher (7)
System\IO\FileSystemWatcher.Linux.cs (7)
255
mask |= Interop.Sys.NotifyEvents.
IN_MOVED_TO
| Interop.Sys.NotifyEvents.IN_MOVED_FROM;
523
Interop.Sys.NotifyEvents.
IN_MOVED_TO
;
567
bool isMatchingMovedTo = (mask & Interop.Sys.NotifyEvents.
IN_MOVED_TO
) != 0 && movedFromCookie == nextEvent.cookie;
642
if ((mask & (Interop.Sys.NotifyEvents.IN_CREATE | Interop.Sys.NotifyEvents.
IN_MOVED_TO
)) != 0)
693
case Interop.Sys.NotifyEvents.
IN_MOVED_TO
:
706
=> matchingFromFound ??= (mask & Interop.Sys.NotifyEvents.
IN_MOVED_TO
) != 0 ? FindMatchingWatchedDirectory(dirs, watcher) : null;
1297
Interop.Sys.NotifyEvents.
IN_MOVED_TO
;