8 references to Error
System.IO.FileSystem.Watcher (8)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (1)
150
return $"RawErrno: {RawErrno} Error: {
Error
} GetErrorMessage: {GetErrorMessage()}"; // No localization required; text is member names used for debugging purposes
src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (3)
13
Debug.Assert(errorInfo.
Error
!= Error.SUCCESS);
14
Debug.Assert(errorInfo.
Error
!= Error.EINTR, "EINTR errors should be handled by the native shim and never bubble up to managed code");
118
switch (errorInfo.
Error
)
System\IO\FileSystemWatcher.Linux.cs (4)
41
switch (error.
Error
)
382
if (hasParent && (error.
Error
== Interop.Error.ENOENT ||
383
error.
Error
== Interop.Error.ENOTDIR))
389
if (error.
Error
== Interop.Error.ENOSPC)