37 references to SR
System.IO.FileSystem.Watcher (37)
src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (18)
126
new FileNotFoundException(
SR
.Format(
SR
.IO_FileNotFound_FileName, path), path) :
127
new FileNotFoundException(
SR
.IO_FileNotFound);
133
new DirectoryNotFoundException(
SR
.Format(
SR
.IO_PathNotFound_Path, path)) :
134
new DirectoryNotFoundException(
SR
.IO_PathNotFound_NoPathName);
141
new UnauthorizedAccessException(
SR
.Format(
SR
.UnauthorizedAccess_IODenied_Path, path), inner) :
142
new UnauthorizedAccessException(
SR
.UnauthorizedAccess_IODenied_NoPathName, inner);
146
new PathTooLongException(
SR
.Format(
SR
.IO_PathTooLong_Path, path)) :
147
new PathTooLongException(
SR
.IO_PathTooLong);
151
new IOException(
SR
.Format(
SR
.IO_SharingViolation_File, path), errorInfo.RawErrno) :
152
new IOException(
SR
.IO_SharingViolation_NoFileName, errorInfo.RawErrno);
158
return new ArgumentOutOfRangeException("value",
SR
.ArgumentOutOfRange_FileLengthTooBig);
163
return new IOException(
SR
.Format(
SR
.IO_FileExists_Name, path), errorInfo.RawErrno);
System\IO\FileSystemWatcher.cs (12)
116
throw new ArgumentException(
SR
.Format(
SR
.InvalidEnumArgument, nameof(value), (int)value, nameof(NotifyFilters)));
243
throw new ArgumentException(
SR
.Format(
SR
.InvalidDirName, value), nameof(Path));
246
throw new ArgumentException(
SR
.Format(
SR
.InvalidDirName_NotExists, value), nameof(Path));
365
throw new ArgumentException(
SR
.Format(
SR
.InvalidDirName, path), nameof(path));
368
throw new ArgumentException(
SR
.Format(
SR
.InvalidDirName_NotExists, path), nameof(path));
405
=> new InternalBufferOverflowException(
SR
.Format(
SR
.FSW_BufferOverflow, directoryPath));
System\IO\FileSystemWatcher.Linux.cs (7)
159
SR
.Format(
SR
.IOException_INotifyInstanceUserLimitExceeded_Value, maxValue) :
160
SR
.IOException_INotifyInstanceUserLimitExceeded;
163
throw new IOException(
SR
.IOException_INotifyInstanceSystemLimitExceeded, error.RawErrno);
276
SR
.Format(
SR
.IOException_INotifyWatchesUserLimitExceeded_Value, maxValue) :
277
SR
.IOException_INotifyWatchesUserLimitExceeded;