2 instantiations of ErrorInfo
System.IO.FileSystem.Watcher (2)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (2)
163return new ErrorInfo(Marshal.GetLastPInvokeError()); 221return new Interop.ErrorInfo(error);
7 references to ErrorInfo
System.IO.FileSystem.Watcher (7)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (2)
161internal static ErrorInfo GetLastErrorInfo() 219public static Interop.ErrorInfo Info(this Interop.Error error)
src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (3)
11private static void ThrowExceptionForIoErrno(ErrorInfo errorInfo, string? path, bool isDirError) 114internal static Exception GetExceptionForIoErrno(ErrorInfo errorInfo, string? path = null, bool isDirError = false) 179internal static Exception GetIOException(Interop.ErrorInfo errorInfo, string? path = null)
System\IO\FileSystemWatcher.Linux.cs (2)
39Interop.ErrorInfo error = Interop.Sys.GetLastErrorInfo(); 378Interop.ErrorInfo error = Interop.Sys.GetLastErrorInfo();