8 references to Error
System.IO.FileSystem.Watcher (8)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (1)
151
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)
154
switch (error.
Error
)
266
if (ignoreMissing && (error.
Error
== Interop.Error.ENOENT || error.
Error
== Interop.Error.ENOTDIR))
272
if (error.
Error
== Interop.Error.ENOSPC)