Internal\Reflection\Augments\ReflectionAugments.cs (29)
121throw new ArgumentException(SR.Argument_InvalidHandle);
125throw new ArgumentException(SR.Format(SR.Argument_MethodDeclaringTypeGeneric, methodBase, methodBase.DeclaringType.GetGenericTypeDefinition()));
142throw new ArgumentException(SR.Argument_InvalidHandle);
144throw new ArgumentException(SR.Format(SR.Argument_ResolveMethodHandle,
165throw new ArgumentException(SR.Argument_InvalidHandle);
169throw new ArgumentException(SR.Format(SR.Argument_FieldDeclaringTypeGeneric, fieldInfo));
185throw new ArgumentException(SR.Argument_InvalidHandle);
187throw new ArgumentException(SR.Format(SR.Argument_ResolveFieldHandle,
264throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(type));
267throw new ArgumentException(SR.Argument_MustBeRuntimeMethodInfo, nameof(method));
272throw new ArgumentException(SR.Arg_MustBeDelegate, nameof(type));
278throw new ArgumentException(SR.Arg_DlgtTargMeth);
293throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(type));
297throw new ArgumentException(SR.Arg_MustBeDelegate);
304throw new ArgumentException(SR.Arg_DlgtTargMeth);
316throw new ArgumentException(SR.Arg_UnboundGenParam, nameof(target));
320throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(type));
323throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(target));
328throw new ArgumentException(SR.Arg_MustBeDelegate);
334throw new ArgumentException(SR.Arg_DlgtTargMeth);
405throw new ArgumentException(SR.Arg_ArrayZeroError, nameof(flds));
412throw new ArgumentException(SR.Argument_MustBeRuntimeFieldInfo);
414throw new ArgumentException(SR.Argument_TypedReferenceInvalidField);
420throw new MissingMemberException(SR.MissingMemberTypeRef); // MissingMemberException is a strange exception to throw, but it is the compatible exception.
424throw new MissingMemberException(SR.MissingMemberNestErr); // MissingMemberException is a strange exception to throw, but it is the compatible exception.
Internal\Runtime\CompilerHelpers\RuntimeInteropData.cs (20)
24throw new ArgumentException(SR.Format(SR.Arg_CannotMarshal, Type.GetTypeFromHandle(structureTypeHandle)), nameof(structureTypeHandle));
47throw new ArgumentException(SR.Format(SR.Argument_OffsetOfFieldNotFound, Type.GetTypeFromHandle(structureTypeHandle)), nameof(fieldName));
50throw new NotSupportedException(SR.Format(SR.StructMarshalling_MissingInteropData, Type.GetTypeFromHandle(structureTypeHandle)!));
61throw new ArgumentException(SR.Format(SR.Arg_CannotMarshal, Type.GetTypeFromHandle(structureTypeHandle)), nameof(structureTypeHandle));
80throw new ArgumentException(SR.Format(SR.Arg_CannotMarshal, structureType));
84throw new NotSupportedException(SR.Format(SR.StructMarshalling_MissingInteropData, structureType));
109throw new NotSupportedException(SR.Format(SR.DelegateMarshalling_MissingInteropData, Type.GetTypeFromHandle(delegateTypeHandle)));
118throw new NotSupportedException(SR.Format(SR.DelegateMarshalling_MissingInteropData, Type.GetTypeFromHandle(delegateTypeHandle)));
213throw new ArgumentException(SR.Format(SR.Arg_CannotMarshal, Type.GetTypeFromHandle(structTypeHandle)));
226throw new NotSupportedException(SR.Format(SR.StructMarshalling_MissingInteropData, Type.GetTypeFromHandle(structTypeHandle)));
Internal\Runtime\TypeLoaderExceptionHelper.cs (30)
29return new TypeLoadException(SR.Format(GetFormatString(id), typeName, moduleName), typeName);
34return new TypeLoadException(SR.Format(GetFormatString(id), typeName, moduleName, messageArg), typeName);
39return new MissingFieldException(SR.Format(GetFormatString(id), fieldName));
44throw new MissingMethodException(SR.Format(GetFormatString(id), methodName));
49throw new System.IO.FileNotFoundException(SR.Format(GetFormatString(id), fileName), fileName);
59throw new InvalidProgramException(SR.Format(GetFormatString(id), methodName));
78return SR.ClassLoad_General;
80return SR.ClassLoad_ExplicitGeneric;
82return SR.ClassLoad_BadFormat;
84return SR.ClassLoad_ValueClassTooLarge;
86return SR.ClassLoad_ExplicitLayout;
88return SR.ClassLoad_RankTooLarge;
90return SR.ClassLoad_InlineArrayFieldCount;
92return SR.ClassLoad_InlineArrayLength;
94return SR.ClassLoad_InlineArrayExplicit;
96return SR.ClassLoad_InlineArrayExplicitSize;
98return SR.InvalidProgram_Default;
100return SR.InvalidProgram_Specific;
102return SR.InvalidProgram_Vararg;
104return SR.InvalidProgram_CallVirtFinalize;
106return SR.InvalidProgram_NonStaticMethod;
108return SR.InvalidProgram_GenericMethod;
110return SR.InvalidProgram_NonBlittableTypes;
112return SR.InvalidProgram_MultipleCallConv;
114return SR.EE_MissingField;
116return SR.EE_MissingMethod;
118return SR.IO_FileNotFound_FileName;
120return SR.Arg_BadImageFormatException;
122return SR.Arg_MarshalDirectiveException;
124return SR.Arg_AmbiguousMatchException_UnsafeAccessor;
src\runtime\src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (18)
126new FileNotFoundException(SR.Format(SR.IO_FileNotFound_FileName, path), path) :
127new FileNotFoundException(SR.IO_FileNotFound);
134new DirectoryNotFoundException(SR.Format(SR.IO_PathNotFound_Path, path), path) :
138new DirectoryNotFoundException(SR.IO_PathNotFound_NoPathName);
145new UnauthorizedAccessException(SR.Format(SR.UnauthorizedAccess_IODenied_Path, path), inner) :
146new UnauthorizedAccessException(SR.UnauthorizedAccess_IODenied_NoPathName, inner);
150new PathTooLongException(SR.Format(SR.IO_PathTooLong_Path, path)) :
151new PathTooLongException(SR.IO_PathTooLong);
155new IOException(SR.Format(SR.IO_SharingViolation_File, path), errorInfo.RawErrno) :
156new IOException(SR.IO_SharingViolation_NoFileName, errorInfo.RawErrno);
162return new ArgumentOutOfRangeException("value", SR.ArgumentOutOfRange_FileLengthTooBig);
167return new IOException(SR.Format(SR.IO_FileExists_Name, path), errorInfo.RawErrno);
src\runtime\src\libraries\System.Private.CoreLib\src\System\ArgumentOutOfRangeException.cs (25)
25: base(SR.Arg_ArgumentOutOfRangeException)
31: base(SR.Arg_ArgumentOutOfRangeException, paramName)
37: base(message ?? SR.Arg_ArgumentOutOfRangeException, paramName)
43: base(message ?? SR.Arg_ArgumentOutOfRangeException, innerException)
49: base(message ?? SR.Arg_ArgumentOutOfRangeException, paramName)
78string valueMessage = SR.Format(SR.ArgumentOutOfRange_ActualValue, _actualValue);
92throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeNonZero, paramName, value));
96throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeNonNegative, paramName, value));
100throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeNonNegativeNonZero, paramName, value));
104throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeLessOrEqual, paramName, value, other));
108throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeLess, paramName, value, other));
112throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeGreaterOrEqual, paramName, value, other));
116throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeGreater, paramName, value, other));
120throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeNotEqual, paramName, (object?)value ?? "null", (object?)other ?? "null"));
124throw new ArgumentOutOfRangeException(paramName, value, SR.Format(SR.ArgumentOutOfRange_Generic_MustBeEqual, paramName, (object?)value ?? "null", (object?)other ?? "null"));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (18)
165throw new ArgumentException(SR.Arg_MustBeChar);
586throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, "Char", "Boolean"));
636throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, "Char", "Single"));
641throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, "Char", "Double"));
646throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, "Char", "Decimal"));
651throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, "Char", "DateTime"));
1106throw new ArgumentOutOfRangeException(nameof(utf32), SR.ArgumentOutOfRange_InvalidUTF32);
1148message: SR.ArgumentOutOfRange_InvalidHighSurrogate);
1154message: SR.ArgumentOutOfRange_InvalidLowSurrogate);
1200throw new ArgumentException(SR.Format(invalidIsLow ? SR.Argument_InvalidLowSurrogate : SR.Argument_InvalidHighSurrogate, index), nameof(s));
2096static string IBinaryIntegerParseAndFormatInfo<char>.OverflowMessage => SR.Overflow_Char;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (111)
39if (capacity < 0) throw new ArgumentOutOfRangeException(nameof(capacity), SR.Format(SR.ArgumentOutOfRange_MustBeNonNegNum, nameof(capacity)));
78throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_SmallCapacity);
123if (index < 0 || index >= _size) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
128if (index < 0 || index >= _size) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
195throw new ArgumentException(SR.Argument_InvalidOffLen);
252throw new ArgumentException(SR.Arg_RankMultiDimNotSupported, nameof(array));
265throw new ArgumentException(SR.Argument_InvalidOffLen);
267throw new ArgumentException(SR.Arg_RankMultiDimNotSupported, nameof(array));
330throw new ArgumentException(SR.Argument_InvalidOffLen);
359throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
375throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
376if (count < 0 || startIndex > _size - count) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count);
387if (index < 0 || index > _size) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
408if (index < 0 || index > _size) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
453throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLess);
478throw new ArgumentOutOfRangeException(startIndex >= _size ? nameof(startIndex) : nameof(count), SR.ArgumentOutOfRange_BiggerThanCollection);
516if (index < 0 || index >= _size) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
534throw new ArgumentException(SR.Argument_InvalidOffLen);
580throw new ArgumentException(SR.Argument_InvalidOffLen);
594if (index < 0 || index > _size - count) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
608throw new ArgumentException(SR.Argument_InvalidOffLen);
639throw new ArgumentException(SR.Argument_InvalidOffLen);
722if (value < Count) throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_SmallCapacity);
765throw new ArgumentException(SR.Argument_InvalidOffLen);
793throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
825throw new ArgumentException(SR.Argument_InvalidOffLen);
827throw new ArgumentException(SR.Arg_RankMultiDimNotSupported, nameof(array));
830throw new ArgumentException(SR.Argument_InvalidOffLen);
847throw new ArgumentException(SR.Argument_InvalidOffLen);
864if (startIndex < 0 || startIndex > Count) throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
865if (count < 0 || startIndex > Count - count) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count);
894if (index < 0 || index > Count) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
932if (startIndex < 0 || startIndex >= _list.Count) throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLess);
933if (count < 0 || count > startIndex + 1) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count);
971throw new ArgumentException(SR.Argument_InvalidOffLen);
989throw new ArgumentException(SR.Argument_InvalidOffLen);
1008throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1027throw new ArgumentException(SR.Argument_InvalidOffLen);
1036throw new ArgumentException(SR.Argument_InvalidOffLen);
1124throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
1126throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
1614throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1619throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1644throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1649throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1654throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1690throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1695throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1706set => throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1711throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1763throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1768throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1788throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1793throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1798throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1812throw new ArgumentException(SR.Argument_InvalidOffLen);
1842throw new NotSupportedException(SR.NotSupported_FixedSizeCollection);
1866set => throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1873throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1878throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1903throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1908throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1913throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1937set => throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1944throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1949throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1961set => throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1966throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2018throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2023throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2043throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2048throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2053throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2058throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2066throw new ArgumentException(SR.Argument_InvalidOffLen);
2073throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2078throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2094throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
2125if (_version != _list._version) throw new InvalidOperationException(SR.InvalidOperation_EnumFailedVersion);
2144throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
2147throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
2155if (_version != _list._version) throw new InvalidOperationException(SR.InvalidOperation_EnumFailedVersion);
2182throw new InvalidOperationException(SR.InvalidOperation_UnderlyingArrayListChanged);
2218throw new ArgumentException(SR.Argument_InvalidOffLen);
2233if (value < Count) throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_SmallCapacity);
2281throw new ArgumentException(SR.Arg_RankMultiDimNotSupported, nameof(array));
2284throw new ArgumentException(SR.Argument_InvalidOffLen);
2295throw new ArgumentException(SR.Arg_RankMultiDimNotSupported, nameof(array));
2299throw new ArgumentException(SR.Argument_InvalidOffLen);
2301throw new ArgumentException(SR.Argument_InvalidOffLen);
2332throw new ArgumentException(SR.Argument_InvalidOffLen);
2343throw new ArgumentException(SR.Argument_InvalidOffLen);
2364throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2375throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2378throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count);
2388if (index < 0 || index > _baseSize) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2398if (index < 0 || index > _baseSize) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2431throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLess);
2443if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
2456throw new ArgumentException(SR.Argument_InvalidOffLen);
2474throw new ArgumentException(SR.Argument_InvalidOffLen);
2484if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
2497throw new ArgumentException(SR.Argument_InvalidOffLen);
2509if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
2515if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLess);
2544throw new NotSupportedException(SR.NotSupported_RangeCollection);
2573throw new InvalidOperationException(SR.InvalidOperation_EnumFailedVersion);
2615throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
2619throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
2631throw new InvalidOperationException(SR.InvalidOperation_EnumFailedVersion);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Convert.cs (29)
137throw new InvalidCastException(SR.InvalidCast_IConvertible);
161TypeCode.DBNull => throw new InvalidCastException(SR.InvalidCast_DBNull),
162TypeCode.Empty => throw new InvalidCastException(SR.InvalidCast_Empty),
163_ => throw new ArgumentException(SR.Arg_UnknownTypeCode),
214throw new InvalidCastException(SR.InvalidCast_DBNull);
216throw new InvalidCastException(SR.InvalidCast_Empty);
218throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, value.GetType().FullName, targetType.FullName));
236throw new InvalidCastException(SR.InvalidCast_CannotCastNullToValueType);
247throw new InvalidCastException(SR.InvalidCast_IConvertible);
287private static void ThrowCharOverflowException() { throw new OverflowException(SR.Overflow_Char); }
290private static void ThrowByteOverflowException() { throw new OverflowException(SR.Overflow_Byte); }
293private static void ThrowSByteOverflowException() { throw new OverflowException(SR.Overflow_SByte); }
296private static void ThrowInt16OverflowException() { throw new OverflowException(SR.Overflow_Int16); }
299private static void ThrowUInt16OverflowException() { throw new OverflowException(SR.Overflow_UInt16); }
302private static void ThrowInt32OverflowException() { throw new OverflowException(SR.Overflow_Int32); }
305private static void ThrowUInt32OverflowException() { throw new OverflowException(SR.Overflow_UInt32); }
308private static void ThrowInt64OverflowException() { throw new OverflowException(SR.Overflow_Int64); }
311private static void ThrowUInt64OverflowException() { throw new OverflowException(SR.Overflow_UInt64); }
495throw new FormatException(SR.Format_NeedSingleChar);
1075throw new OverflowException(SR.Overflow_Int32);
1196throw new OverflowException(SR.Overflow_UInt32);
2295private static void ThrowInvalidBase() => throw new ArgumentException(SR.Arg_InvalidBase);
2346throw new ArgumentException(SR.Format(SR.Arg_EnumIllegalVal, (int)options), nameof(options));
2384throw new ArgumentException(SR.Format(SR.Arg_EnumIllegalVal, (int)options), nameof(options));
2420throw new ArgumentException(SR.Format(SR.Arg_EnumIllegalVal, (int)options), nameof(options));
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateOnly.cs (22)
131static void ThrowOutOfRange() => throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_AddValue);
251throw new ArgumentException(SR.Arg_MustBeDateOnly);
291throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
319throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
354throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
359throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
367throw new FormatException(SR.Argument_BadFormatSpecifier);
469throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
521throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
529throw new FormatException(SR.Argument_BadFormatSpecifier);
597throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
602throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
610throw new FormatException(SR.Argument_BadFormatSpecifier);
755case ParseFailureKind.Argument_InvalidDateStyles: throw new ArgumentException(SR.Argument_InvalidDateStyles, "style");
756case ParseFailureKind.Argument_BadFormatSpecifier: throw new FormatException(SR.Argument_BadFormatSpecifier);
757case ParseFailureKind.Format_BadDateOnly: throw new FormatException(SR.Format(SR.Format_BadDateOnly, s.ToString()));
760throw new FormatException(SR.Format(SR.Format_DateTimeOnlyContainsNoneDateParts, s.ToString(), nameof(DateOnly)));
828_ => throw new FormatException(SR.Format_InvalidString),
882throw new FormatException(SR.Format(SR.Format_DateTimeOnlyContainsNoneDateParts, format.ToString(), nameof(DateOnly)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateTime.cs (22)
205private static void ThrowTicksOutOfRange() => throw new ArgumentOutOfRangeException("ticks", SR.ArgumentOutOfRange_DateTimeBadTicks);
206private static void ThrowInvalidKind() => throw new ArgumentException(SR.Argument_InvalidDateTimeKind, "kind");
207internal static void ThrowMillisecondOutOfRange() => throw new ArgumentOutOfRangeException("millisecond", SR.Format(SR.ArgumentOutOfRange_Range, 0, TimeSpan.MillisecondsPerSecond - 1));
208internal static void ThrowMicrosecondOutOfRange() => throw new ArgumentOutOfRangeException("microsecond", SR.Format(SR.ArgumentOutOfRange_Range, 0, TimeSpan.MicrosecondsPerMillisecond - 1));
209private static void ThrowDateArithmetic(int param) => throw new ArgumentOutOfRangeException(param switch { 0 => "value", 1 => "t", _ => "months" }, SR.ArgumentOutOfRange_DateArithmetic);
210private static void ThrowAddOutOfRange() => throw new ArgumentOutOfRangeException("value", SR.ArgumentOutOfRange_AddValue);
844throw new SerializationException(SR.Serialization_MissingDateTimeData);
849throw new SerializationException(SR.Serialization_DateTimeTicksOutOfRange);
963if (months < -120000 || months > 120000) throw new ArgumentOutOfRangeException(nameof(months), SR.ArgumentOutOfRange_DateTimeBadMonths);
1025throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_DateTimeBadYears);
1069throw new ArgumentException(SR.Arg_MustBeDateTime);
1164throw new ArgumentException(SR.Arg_OleAutDateInvalid);
1178if (millis < 0 || millis > MaxMillis) throw new ArgumentException(SR.Arg_OleAutDateScale);
1244throw new ArgumentException(SR.Argument_DateTimeBadBinaryData, nameof(dateData));
1251throw new ArgumentException(SR.Argument_DateTimeBadBinaryData, nameof(dateData));
1269throw new ArgumentOutOfRangeException(nameof(fileTime), SR.ArgumentOutOfRange_FileTimeInvalid);
1661throw new OverflowException(SR.Arg_OleAutDateInvalid);
1699throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_FileTimeInvalid);
1964private static InvalidCastException InvalidCast(string to) => new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, nameof(DateTime), to));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (48)
375throw new ArgumentException(SR.Argument_InvalidTypeName, nameof(eventSourceType));
496throw new ArgumentException(SR.EventSource_InvalidCommand, nameof(command));
544return SR.Format(SR.EventSource_ToString, Name, Guid);
1660throw new ArgumentException(SR.EventSource_TraitEven, nameof(traits));
1665throw new ArgumentException(SR.EventSource_NeedGuid);
1670throw new ArgumentException(SR.EventSource_NeedName);
2009throw new ArgumentException(SR.EventSource_NoRelatedActivityId);
2126ReportOutOfBandMessage(SR.Format(SR.EventSource_EventParametersMismatch, eventId, args.Length, infos.Length));
2142ReportOutOfBandMessage(SR.Format(SR.EventSource_VarArgsParameterMismatch, eventId, infos[i].Name));
2155ReportOutOfBandMessage(SR.Format(SR.EventSource_EventParametersMismatch, eventCallbackArgs.EventId, eventDataCount, metadata.Parameters.Length));
2438ReportOutOfBandMessage(errorPrefix + ": " + SR.EventSource_EventTooBig);
2439if (ThrowOnEventWriteErrors) throw new EventSourceException(SR.EventSource_EventTooBig, innerEx);
2442ReportOutOfBandMessage(errorPrefix + ": " + SR.EventSource_NoFreeBuffers);
2443if (ThrowOnEventWriteErrors) throw new EventSourceException(SR.EventSource_NoFreeBuffers, innerEx);
2446ReportOutOfBandMessage(errorPrefix + ": " + SR.EventSource_NullInput);
2447if (ThrowOnEventWriteErrors) throw new EventSourceException(SR.EventSource_NullInput, innerEx);
2450ReportOutOfBandMessage(errorPrefix + ": " + SR.EventSource_TooManyArgs);
2451if (ThrowOnEventWriteErrors) throw new EventSourceException(SR.EventSource_TooManyArgs, innerEx);
2692throw new ArgumentException(SR.EventSource_ListenerNotFound);
2905throw new ArgumentException(SR.Format(SR.EventSource_EventSourceGuidInUse, m_guid));
3099manifest.ManifestError(SR.EventSource_TypeMustDeriveFromEventSource);
3103manifest.ManifestError(SR.EventSource_TypeMustBeSealedOrAbstract);
3115manifest.ManifestError(SR.Format(SR.EventSource_AbstractMustNotDeclareKTOC, nestedType.Name));
3157manifest.ManifestError(SR.Format(SR.EventSource_AbstractMustNotDeclareEventMethods, method.Name, eventAttribute.EventId));
3186manifest.ManifestError(SR.EventSource_NeedPositiveId, true);
3191manifest.ManifestError(SR.Format(SR.EventSource_EventMustNotBeExplicitImplementation, method.Name, eventAttribute.EventId));
3249throw new ArgumentException(SR.EventSource_StopsFollowStarts);
3512manifest.ManifestError(SR.Format(SR.EventSource_EnumKindMismatch, staticField.FieldType.Name, providerEnumKind));
3611manifest.ManifestError(SR.Format(SR.EventSource_MismatchIdToWriteEvent, evtName, evtId, eventArg), true);
3616manifest.ManifestError(SR.Format(SR.EventSource_EventIdReused, evtName, evtId), true);
3630manifest.ManifestError(SR.Format(SR.EventSource_TaskOpcodePairReused,
3655manifest.ManifestError(SR.Format(SR.EventSource_EventMustHaveTaskIfNonDefaultOpcode, evtName, evtId));
3672manifest.ManifestError(SR.Format(SR.EventSource_EventNameReused, evtName), true);
3853throw new ArgumentException(SR.EventSource_InvalidEventFormat, nameof(settings));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (35)
72ManifestError(SR.Format(SR.EventSource_IllegalOpcodeValue, name, value));
77ManifestError(SR.Format(SR.EventSource_OpcodeCollision, name, prevName, value));
90ManifestError(SR.Format(SR.EventSource_IllegalTaskValue, name, value));
95ManifestError(SR.Format(SR.EventSource_TaskCollision, name, prevName, value));
107ManifestError(SR.Format(SR.EventSource_KeywordNeedPowerOfTwo, $"0x{value:x}", name), true);
113ManifestError(SR.Format(SR.EventSource_IllegalKeywordsValue, name, $"0x{value:x}"));
118ManifestError(SR.Format(SR.EventSource_KeywordCollision, name, prevName, $"0x{value:x}"));
133ManifestError(SR.Format(SR.EventSource_EventChannelOutOfRange, name, value));
139ManifestError(SR.Format(SR.EventSource_ChannelTypeDoesNotMatchEventChannelValue,
317ManifestError(SR.EventSource_MaxChannelExceeded);
584ManifestError(SR.Format(SR.EventSource_DuplicateStringKey, key), true);
636ManifestError(SR.Format(SR.EventSource_UndefinedChannel, channel, eventName));
648ManifestError(SR.Format(SR.EventSource_UndefinedChannel, channel, eventName));
656ManifestError(SR.Format(SR.EventSource_EventWithAdminChannelMustHaveMessage, eventName, info.Name));
700ManifestError(SR.Format(SR.EventSource_UndefinedOpcode, opcode, eventName), true);
728ManifestError(SR.Format(SR.EventSource_UndefinedKeyword, "0x" + bit.ToString("x", CultureInfo.CurrentCulture), eventName), true);
798ManifestError(SR.Format(SR.EventSource_UnsupportedEventTypeInManifest, type.Name), true);
872ManifestError(SR.Format(SR.EventSource_UnsupportedMessageProperty, evtName, eventMessage));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Enum.cs (22)
404throw new ArgumentException(SR.Format(SR.Argument_EnumTypeDoesNotMatch, flag.GetType(), GetType()));
887throw new ArgumentException(SR.Arg_MustBeEnum, nameof(TEnum));
1121throw new ArgumentException(SR.Format(SR.Arg_EnumValueNotFound, originalValue.ToString()));
1290throw new ArgumentException(SR.Format(SR.Arg_EnumAndObjectMustBeSameType, target.GetType(), GetType()));
1603throw new InvalidOperationException(SR.InvalidOperation_UnknownEnumType);
1637throw new ArgumentException(SR.Format(SR.Arg_EnumAndObjectMustBeSameType, valueType, rtType));
1650throw new ArgumentException(SR.Format(SR.Arg_EnumFormatUnderlyingTypeAndObjectMustBeSameType, valueType, underlyingType));
2140throw new InvalidOperationException(SR.Format(SR.Arg_OpenType, rt.ToString()));
2148throw new ArgumentException(enumType is not RuntimeType ? SR.Arg_MustBeType : SR.Arg_MustBeEnum, nameof(enumType));
2151throw new ArgumentException(SR.Arg_MustContainEnumInfo, "value");
2155new FormatException(SR.Format_InvalidEnumFormatSpecification);
2159new InvalidOperationException(SR.InvalidOperation_UnknownEnumType);
2191DateTime IConvertible.ToDateTime(IFormatProvider? provider) => throw new InvalidCastException(SR.Format(SR.InvalidCast_FromTo, "Enum", "DateTime"));
2221throw new ArgumentException(SR.Arg_MustBeEnumBaseTypeOrEnum, nameof(value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\Calendar.cs (11)
79throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
114throw new ArgumentException(SR.Format(SR.Argument_ResultCalendarRange, minValue, maxValue));
130throw new ArgumentOutOfRangeException(nameof(value), value, SR.ArgumentOutOfRange_AddValue);
481SR.Format(SR.ArgumentOutOfRange_Range, DayOfWeek.Sunday, DayOfWeek.Saturday));
492SR.Format(SR.ArgumentOutOfRange_Range, CalendarWeekRule.FirstDay, CalendarWeekRule.FirstFourDayWeek)),
671throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadHourMinuteSecond);
678SR.Format(SR.ArgumentOutOfRange_Range, 0, TimeSpan.MillisecondsPerSecond - 1));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\ChineseLunisolarCalendar.cs (5)
258throw new ArgumentOutOfRangeException("year", lunarYear, SR.Format(SR.ArgumentOutOfRange_Range, MinLunisolarYear, MaxLunisolarYear));
273throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
277throw new ArgumentOutOfRangeException(nameof(year), year, SR.Format(SR.ArgumentOutOfRange_Range, MinLunisolarYear, MaxLunisolarYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CultureInfo.cs (14)
156private static string GetCultureNotSupportedExceptionMessage() => GlobalizationMode.Invariant ? SR.Argument_CultureNotSupportedInInvariantMode : SR.Argument_CultureNotSupported;
205throw new CultureNotFoundException(nameof(culture), culture, SR.Argument_CultureNotSupported);
324throw new ArgumentException(SR.Format(SR.Argument_InvalidResourceCultureName, cultureName));
973throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1088throw new CultureNotFoundException("name/altName", SR.Format(SR.Argument_OneOfCulturesNotSupported, name, altName));
1108throw new CultureNotFoundException(nameof(name), name, SR.Format(SR.Argument_InvalidPredefinedCultureName, name));
1150throw new CultureNotFoundException(nameof(name), SR.Format(SR.Argument_CultureIetfNotSupported, name));
1158throw new CultureNotFoundException(nameof(name), SR.Format(SR.Argument_CultureIetfNotSupported, name));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormatInfo.cs (53)
352throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
382throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
458throw new ArgumentOutOfRangeException(nameof(value), value, SR.Argument_InvalidCalendar);
537throw new ArgumentOutOfRangeException(nameof(era), era + 1, SR.ArgumentOutOfRange_InvalidEraValue);
566throw new ArgumentOutOfRangeException(nameof(era), era + 1, SR.ArgumentOutOfRange_InvalidEraValue);
601throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
635throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
643SR.Format(SR.ArgumentOutOfRange_Range, DayOfWeek.Sunday, DayOfWeek.Saturday));
666throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
673SR.Format(SR.ArgumentOutOfRange_Range, CalendarWeekRule.FirstDay, CalendarWeekRule.FirstFourDayWeek));
687throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
708throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
742throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
784throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
804throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
838throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
874throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
986throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1020throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1048throw new ArgumentNullException("value", SR.ArgumentNull_ArrayValue);
1060throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1065throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 7), nameof(value));
1085throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1090throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 7), nameof(value));
1105throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1110throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 7), nameof(value));
1127throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1132throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 13), nameof(value));
1148throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1153throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 13), nameof(value));
1321_ => throw new ArgumentException(SR.Format(SR.Format_BadFormatSpecifier, format), nameof(format)),
1591throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1597throw new ArgumentException(SR.Arg_ArrayZeroError, nameof(patterns));
1604throw new ArgumentNullException(nameof(patterns) + "[" + i + "]", SR.ArgumentNull_ArrayValue);
1643throw new ArgumentException(SR.Format(SR.Format_BadFormatSpecifier, format), nameof(format));
1654throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1659throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 13), nameof(value));
1675throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1680throw new ArgumentException(SR.Format(SR.Argument_InvalidArrayLength, 13), nameof(value));
1738string message = (style & InvalidDateTimeStyles) != 0 ? SR.Argument_InvalidDateTimeStyles
1739: (style & localUniversal) == localUniversal ? SR.Argument_ConflictingDateTimeStyles
1740: SR.Argument_ConflictingDateTimeRoundtripStyles;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeParse.cs (26)
5307return new ArgumentNullException("formats", SR.ArgumentNull_String);
5309return new FormatException(SR.Format(SR.Format_BadDatePattern, new string(result.failureSpanArgument)));
5311return new FormatException(SR.Format(SR.Format_BadDateTime, new string(result.failureSpanArgument)));
5313return new FormatException(SR.Format(SR.Format_BadDateTimeCalendar, new string(result.failureSpanArgument), result.calendar));
5315return new FormatException(SR.Format(SR.Format_BadDayOfWeek, new string(result.failureSpanArgument)));
5317return new FormatException(SR.Format(SR.Format_BadFormatSpecifier, new string(result.failureSpanArgument)));
5319return new FormatException(SR.Format(SR.Format_BadQuote, (char)result.failureIntArgument));
5321return new FormatException(SR.Format(SR.Format_DateOutOfRange, new string(result.failureSpanArgument)));
5323return new FormatException(SR.Format(SR.Format_MissingIncompleteDate, new string(result.failureSpanArgument)));
5325return new FormatException(SR.Format_NoFormatSpecifier);
5327return new FormatException(SR.Format(SR.Format_OffsetOutOfRange, new string(result.failureSpanArgument)));
5329return new FormatException(SR.Format(SR.Format_RepeatDateTimePattern, (char)result.failureIntArgument));
5331return new FormatException(SR.Format(SR.Format_UnknownDateTimeWord, new string(result.failureSpanArgument), result.failureIntArgument));
5333return new FormatException(SR.Format(SR.Format_UTCOutOfRange, new string(result.failureSpanArgument)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\EastAsianLunisolarCalendar.cs (20)
41SR.Format(SR.ArgumentOutOfRange_Range, 1, 60));
58SR.Format(SR.ArgumentOutOfRange_Range, 1, 60));
104throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
134throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
148SR.Format(CultureInfo.InvariantCulture, SR.ArgumentOutOfRange_CalendarRange,
162throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
176SR.Format(SR.ArgumentOutOfRange_Range, MinEraCalendarYear(era), MaxEraCalendarYear(era)));
253SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
258throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
431SR.Format(SR.ArgumentOutOfRange_Range, -120000, 120000));
604SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
669SR.Format(SR.ArgumentOutOfRange_Range, 99, MaxCalendarYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\GregorianCalendar.cs (31)
54SR.Format(SR.ArgumentOutOfRange_Range, GregorianCalendarTypes.Localized, GregorianCalendarTypes.TransliteratedFrench));
71SR.Format(SR.ArgumentOutOfRange_Range, GregorianCalendarTypes.Localized, GregorianCalendarTypes.TransliteratedFrench));
107throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
144SR.Format(SR.ArgumentOutOfRange_Range, -120000, 120000));
215throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
228throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
250throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
257SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxYear));
296SR.Format(SR.ArgumentOutOfRange_Range, 1, 12));
301throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
308SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxYear));
315SR.Format(SR.ArgumentOutOfRange_Range, 1, GetDaysInMonth(year, month)));
330throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
337SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxYear));
351throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
358SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxYear));
365SR.Format(SR.ArgumentOutOfRange_Range, 1, 12));
379throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
392throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
430SR.Format(SR.ArgumentOutOfRange_Range, 99, MaxYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\GregorianCalendarHelper.cs (17)
85throw new ArgumentOutOfRangeException(nameof(year), SR.ArgumentOutOfRange_NeedNonNegNum);
136SR.Format(
137SR.ArgumentOutOfRange_Range,
148throw new ArgumentOutOfRangeException(nameof(era), SR.ArgumentOutOfRange_InvalidEraValue);
181SR.Format(
183SR.ArgumentOutOfRange_CalendarRange,
212SR.Format(
213SR.ArgumentOutOfRange_Range,
326throw new ArgumentOutOfRangeException(nameof(time), SR.ArgumentOutOfRange_Era);
374throw new ArgumentException(SR.Argument_NoEra);
395throw new ArgumentException(SR.Argument_NoEra);
408SR.Format(
409SR.ArgumentOutOfRange_Range,
448SR.Format(
449SR.ArgumentOutOfRange_Range,
496SR.Format(SR.ArgumentOutOfRange_Range, m_minYear, m_maxYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\HebrewCalendar.cs (13)
299SR.Format(SR.ArgumentOutOfRange_Range, MinHebrewYear, MaxHebrewYear));
317SR.Format(SR.ArgumentOutOfRange_Range, 1, monthsInYear));
335SR.Format(SR.ArgumentOutOfRange_Range, 1, daysInMonth));
343throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
355SR.Format(
357SR.ArgumentOutOfRange_CalendarRange,
370_ => throw new InvalidOperationException(SR.InvalidOperation_DateTimeParsing),
575throw new ArgumentOutOfRangeException(nameof(months), months, SR.ArgumentOutOfRange_AddValue);
884SR.Format(SR.ArgumentOutOfRange_Range, MinHebrewYear, MaxHebrewYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\HijriCalendar.cs (21)
127SR.Format(SR.ArgumentOutOfRange_Bounds_Lower_Upper, MinAdvancedHijri, MaxAdvancedHijri));
142SR.Format(
144SR.ArgumentOutOfRange_CalendarRange,
154throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
165SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxCalendarYear));
179SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxCalendarMonth));
264throw new InvalidOperationException(SR.InvalidOperation_DateTimeParsing);
274SR.Format(SR.ArgumentOutOfRange_Range, -120000, 120000));
374SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
407SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
413throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
440SR.Format(SR.ArgumentOutOfRange_Range, 99, MaxCalendarYear));
461SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxCalendarYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (56)
74throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
76throw new ArgumentOutOfRangeException(nameof(unicode), SR.ArgumentOutOfRange_IndexCountBuffer);
80throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
84throw new ArgumentException(SR.Format(SR.Argument_InvalidCharSequence, index + count - 1), nameof(unicode));
109throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
114throw new ArgumentException(SR.Format(SR.Argument_InvalidCharSequence, unicode.Length - 1), nameof(unicode));
150throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
152throw new ArgumentOutOfRangeException(nameof(ascii), SR.ArgumentOutOfRange_IndexCountBuffer);
158throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
185throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
265throw new ArgumentException(SR.Format(SR.Argument_InvalidCharSequence, unicode.Length - 1), nameof(unicode));
299throw new ArgumentException(SR.Format(SR.Argument_InvalidCharSequence, unicode.Length - 1), nameof(unicode));
326throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
336throw new ArgumentException(SR.Format(SR.Argument_InvalidCharSequence, i), nameof(unicode));
348throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
352throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
372throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
376throw new ArgumentException(SR.Format(SR.Argument_IdnBadNameSize,
415throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
437throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
466throw new ArgumentException(SR.Argument_IdnBadBidi, nameof(unicode));
485throw new ArgumentException(SR.Argument_IdnBadBidi, nameof(unicode));
492throw new ArgumentException(SR.Argument_IdnBadBidi, nameof(unicode));
518throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(unicode));
603throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(unicode));
615throw new ArgumentException(SR.Format(SR.Argument_IdnBadNameSize,
653throw new ArgumentException(SR.Format(SR.Argument_IdnBadStd3, c), nameof(c));
666throw new ArgumentException(SR.Argument_IdnIllegalName, nameof(ascii));
689throw new ArgumentException(SR.Argument_IdnIllegalName, nameof(ascii));
728throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(ascii));
732throw new ArgumentException(SR.Format(SR.Argument_IdnBadNameSize,
755throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(ascii));
763throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(ascii));
782throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
797throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
832throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
839throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
847throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
858throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
864throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
879throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(ascii));
923throw new ArgumentException(SR.Argument_IdnBadBidi, nameof(ascii));
930throw new ArgumentException(SR.Argument_IdnBadBidi, nameof(ascii));
936throw new ArgumentException(SR.Argument_IdnBadLabelSize, nameof(ascii));
948throw new ArgumentException(SR.Format(SR.Argument_IdnBadNameSize, c_defaultNameLimit - (IsDot(output[^1]) ? 0 : 1)), nameof(ascii));
971throw new ArgumentException(SR.Argument_IdnBadPunycode, nameof(cp));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\JulianCalendar.cs (15)
56throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
68SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxYear));
94throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
106SR.Format(SR.ArgumentOutOfRange_Range, 1, monthDays));
187SR.Format(SR.ArgumentOutOfRange_Range, -120000, 120000));
311SR.Format(SR.ArgumentOutOfRange_Range, 0, TimeSpan.MillisecondsPerSecond - 1));
316throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadHourMinuteSecond);
333SR.Format(SR.ArgumentOutOfRange_Range, 99, MaxYear));
348SR.Format(SR.ArgumentOutOfRange_Bounds_Lower_Upper, 1, MaxYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\NumberFormatInfo.cs (16)
127throw new ArgumentException(SR.Argument_InvalidNativeDigitCount, propertyName);
134throw new ArgumentNullException(propertyName, SR.ArgumentNull_ArrayValue);
142throw new ArgumentException(SR.Argument_InvalidNativeDigitValue, propertyName);
147throw new ArgumentException(SR.Argument_InvalidNativeDigitValue, propertyName);
156throw new ArgumentException(SR.Argument_InvalidNativeDigitValue, propertyName);
172throw new ArgumentException(SR.Argument_InvalidDigitSubstitution, propertyName);
215throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
311throw new ArgumentException(SR.Argument_InvalidGroupSize, propName);
315throw new ArgumentException(SR.Argument_InvalidGroupSize, propName);
838(value & InvalidNumberStyles) != 0 ? SR.Argument_InvalidNumberStyles : SR.Arg_InvalidHexBinaryStyle,
858(value & InvalidNumberStyles) != 0 ? SR.Argument_InvalidNumberStyles :
859(value & NumberStyles.AllowBinarySpecifier) != 0 ? SR.Arg_BinaryStyleNotSupported :
860SR.Arg_InvalidHexFloatStyle,
874throw new ArgumentException((value & InvalidNumberStyles) != 0 ? SR.Argument_InvalidNumberStyles : SR.Arg_HexBinaryStylesNotSupported, nameof(style));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\PersianCalendar.cs (20)
62throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
80SR.Format(SR.ArgumentOutOfRange_CalendarRange, s_minDate, s_maxDate));
88throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
100SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxCalendarYear));
114SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxCalendarMonth));
188throw new InvalidOperationException(SR.InvalidOperation_DateTimeParsing);
226SR.Format(SR.ArgumentOutOfRange_Range, -120000, 120000));
338SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
377SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
384throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
411SR.Format(SR.ArgumentOutOfRange_Range, 99, MaxCalendarYear));
431SR.Format(SR.ArgumentOutOfRange_Range, 1, MaxCalendarYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\RegionInfo.cs (11)
33throw new ArgumentException(SR.Argument_NoRegionInvariantCulture, nameof(name));
38throw new ArgumentException(SR.Format(SR.Argument_InvalidCultureName, name), nameof(name));
43throw new ArgumentException(SR.Format(SR.Argument_InvalidNeutralRegionName, name), nameof(name));
54throw new ArgumentException(SR.Argument_NoRegionInvariantCulture);
60throw new ArgumentException(SR.Format(SR.Argument_CultureIsNeutral, culture), nameof(culture));
66throw new ArgumentException(SR.Argument_CustomCultureCannotBePassedByNumber, nameof(culture));
75throw new ArgumentException(SR.Format(SR.Argument_CultureIsNeutral, culture), nameof(culture));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\UmAlQuraCalendar.cs (17)
300SR.Format(
302SR.ArgumentOutOfRange_CalendarRange,
312throw new ArgumentOutOfRangeException(nameof(era), era, SR.ArgumentOutOfRange_InvalidEraValue);
324SR.Format(SR.ArgumentOutOfRange_Range, MinCalendarYear, MaxCalendarYear));
407throw new InvalidOperationException(SR.InvalidOperation_DateTimeParsing);
417SR.Format(SR.ArgumentOutOfRange_Range, -120000, 120000));
546SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
585SR.Format(SR.ArgumentOutOfRange_Day, daysInMonth, month));
591throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
617SR.Format(SR.ArgumentOutOfRange_Range, MinCalendarYear, MaxCalendarYear));
640SR.Format(SR.ArgumentOutOfRange_Range, MinCalendarYear, MaxCalendarYear));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (18)
104throw new ArgumentException(SR.Format(SR.Arg_GuidArrayCtor, "16"), "b");
130throw new ArgumentException(SR.Format(SR.Arg_GuidArrayCtor, "8"), nameof(d));
228throw new OverflowException(SR.Overflow_UInt32);
233ParseFailure.Format_ExtraJunkAtEnd => SR.Format_ExtraJunkAtEnd,
234ParseFailure.Format_GuidBraceAfterLastNumber => SR.Format_GuidBraceAfterLastNumber,
235ParseFailure.Format_GuidBrace => SR.Format_GuidBrace,
236ParseFailure.Format_GuidComma => SR.Format_GuidComma,
237ParseFailure.Format_GuidDashes => SR.Format_GuidDashes,
238ParseFailure.Format_GuidEndBrace => SR.Format_GuidEndBrace,
239ParseFailure.Format_GuidHexPrefix => SR.Format_GuidHexPrefix,
240ParseFailure.Format_GuidInvalidChar => SR.Format_GuidInvalidChar,
241ParseFailure.Format_GuidInvLen => SR.Format_GuidInvLen,
242_ => SR.Format_GuidUnrecognized
436_ => throw new FormatException(SR.Format_InvalidGuidFormatSpecification),
1117throw new ArgumentException(SR.Arg_MustBeGuid, nameof(value));
1855throw new FormatException(SR.Format_InvalidGuidFormatSpecification);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (29)
59return new IOException(SR.Format(SR.Arg_FileIsDirectory_Name, path));
67throw new PlatformNotSupportedException(SR.PlatformNotSupported_FileEncryption);
72throw new PlatformNotSupportedException(SR.PlatformNotSupported_FileEncryption);
131throw new UnauthorizedAccessException(SR.Format(SR.IO_NotAFile, sourceFullPath));
140throw new UnauthorizedAccessException(SR.Format(SR.IO_NotAFile, destFullPath));
146throw new IOException(SR.Format(SR.IO_CannotReplaceSameFile, sourceFullPath, destFullPath));
409throw new IOException(SR.Format(SR.IO_PathNotFound_Path, sourceFullPath));
421throw new DirectoryNotFoundException(SR.Format(SR.IO_PathNotFound_Path, sourceFullPath), sourceFullPath);
434throw new IOException(SR.IO_SourceDestMustBeDifferent);
441throw new IOException(SR.Format(SR.IO_PathNotFound_Path, sourceFullPath));
445throw new IOException(SR.Format(SR.IO_AlreadyExists_Name, destFullPath));
455throw new IOException(SR.Format(SR.UnauthorizedAccess_IODenied_Path, sourceFullPath), errorInfo.RawErrno);
457throw new DirectoryNotFoundException(SR.Format(SR.IO_PathNotFound_Path, sourceFullPath), sourceFullPath);
459throw new IOException(SR.Format(SR.IO_PathNotFound_Path, sourceFullPath));
565throw new IOException(SR.Format(SR.UnauthorizedAccess_IODenied_Path, fullPath));
709throw new IOException(SR.Format(SR.IO_TooManySymbolicLinkLevels, linkPath));
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\ReadOnlyMemoryStream.cs (12)
67throw new ArgumentOutOfRangeException(nameof(value), SR.Format(SR.ArgumentOutOfRange_StreamPosition, int.MaxValue));
164_ => throw new ArgumentException(SR.Argument_InvalidSeekOrigin)
169throw new ArgumentOutOfRangeException(nameof(offset), SR.Format(SR.ArgumentOutOfRange_StreamPosition, int.MaxValue));
175throw new IOException(SR.IO_SeekBeforeBegin);
220public override void SetLength(long value) => throw new NotSupportedException(SR.NotSupported_UnwritableStream);
225public override void Write(byte[] buffer, int offset, int count) => throw new NotSupportedException(SR.NotSupported_UnwritableStream);
230public override void Write(ReadOnlySpan<byte> buffer) => throw new NotSupportedException(SR.NotSupported_UnwritableStream);
235public override void WriteByte(byte value) => throw new NotSupportedException(SR.NotSupported_UnwritableStream);
240public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken) => throw new NotSupportedException(SR.NotSupported_UnwritableStream);
245public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken = default) => throw new NotSupportedException(SR.NotSupported_UnwritableStream);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\SharedMemoryManager.Unix.cs (19)
46throw new IOException(SR.Argument_DirectorySeparatorInvalid);
238throw new InvalidDataException(SR.Format(SR.IO_SharedMemory_InvalidHeader, sharedMemoryFilePath));
277throw new InvalidDataException(SR.Format(SR.IO_SharedMemory_InvalidHeader, sharedMemoryFilePath));
442throw new IOException(SR.Format(SR.IO_SharedMemory_FileNotOwnedByUid, sharedMemoryFilePath, id.Uid));
458throw new IOException(SR.Format(SR.IO_SharedMemory_FilePermissionsIncorrect, sharedMemoryFilePath, PermissionsMask_OwnerUser_ReadWrite));
613throw new IOException(SR.Format(SR.IO_SharedMemory_PathExistsButNotDirectory, directoryPath));
644throw new IOException(SR.Format(SR.IO_SharedMemory_DirectoryPermissionsIncorrect, directoryPath, fileStatus.Uid, Convert.ToString(fileStatus.Mode, 8)));
659throw new IOException(SR.Format(SR.IO_SharedMemory_DirectoryNotOwnedByUid, directoryPath, id.Uid));
678throw new IOException(SR.Format(SR.IO_SharedMemory_DirectoryPermissionsIncorrectUserScope, directoryPath, Convert.ToString(fileStatus.Mode, 8)));
693throw new IOException(SR.Format(SR.IO_SharedMemory_DirectoryOwnerPermissionsIncorrect, directoryPath, Convert.ToString(fileStatus.Mode, 8)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryAccessor.cs (28)
48throw new ArgumentException(SR.Argument_OffsetAndCapacityOutOfBounds);
57throw new InvalidOperationException(SR.InvalidOperation_CalledTwice);
69throw new ArgumentException(SR.Argument_UnmanagedMemAccessorWrapAround);
249throw new ArgumentException(SR.Arg_BadDecimal); // Throw same Exception type as Decimal(int[]) ctor for compat
287throw new ObjectDisposedException(nameof(UnmanagedMemoryAccessor), SR.ObjectDisposed_ViewAccessorClosed);
291throw new NotSupportedException(SR.NotSupported_Reading);
299throw new ArgumentOutOfRangeException(nameof(position), SR.ArgumentOutOfRange_PositionLessThanCapacityRequired);
303throw new ArgumentException(SR.Argument_NotEnoughBytesToRead, nameof(position));
321throw new ArgumentException(SR.Argument_InvalidOffLen);
325throw new ObjectDisposedException(nameof(UnmanagedMemoryAccessor), SR.ObjectDisposed_ViewAccessorClosed);
329throw new NotSupportedException(SR.NotSupported_Reading);
338throw new ArgumentOutOfRangeException(nameof(position), SR.ArgumentOutOfRange_PositionLessThanCapacityRequired);
515throw new ObjectDisposedException(nameof(UnmanagedMemoryAccessor), SR.ObjectDisposed_ViewAccessorClosed);
519throw new NotSupportedException(SR.NotSupported_Writing);
527throw new ArgumentOutOfRangeException(nameof(position), SR.ArgumentOutOfRange_PositionLessThanCapacityRequired);
531throw new ArgumentException(SR.Argument_NotEnoughBytesToWrite, nameof(position));
547throw new ArgumentException(SR.Argument_InvalidOffLen);
552throw new ArgumentOutOfRangeException(nameof(position), SR.ArgumentOutOfRange_PositionLessThanCapacityRequired);
557throw new ObjectDisposedException(nameof(UnmanagedMemoryAccessor), SR.ObjectDisposed_ViewAccessorClosed);
561throw new NotSupportedException(SR.NotSupported_Writing);
571throw new ObjectDisposedException(nameof(UnmanagedMemoryAccessor), SR.ObjectDisposed_ViewAccessorClosed);
575throw new NotSupportedException(SR.NotSupported_Reading);
582throw new ArgumentOutOfRangeException(nameof(position), SR.ArgumentOutOfRange_PositionLessThanCapacityRequired);
586throw new ArgumentException(SR.Argument_NotEnoughBytesToRead, nameof(position));
595throw new ObjectDisposedException(nameof(UnmanagedMemoryAccessor), SR.ObjectDisposed_ViewAccessorClosed);
599throw new NotSupportedException(SR.NotSupported_Writing);
606throw new ArgumentOutOfRangeException(nameof(position), SR.ArgumentOutOfRange_PositionLessThanCapacityRequired);
610throw new ArgumentException(SR.Argument_NotEnoughBytesToWrite, nameof(position));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilder.cs (18)
92throw new ArgumentException(SR.Arg_EmptyArray, nameof(names));
130throw new ArgumentException(SR.Format(SR.Argument_MismatchedArrays, nameof(parameterTypeOptionalCustomModifiers), nameof(parameterTypes)));
133throw new ArgumentException(SR.Format(SR.Argument_MismatchedArrays, nameof(parameterTypeRequiredCustomModifiers), nameof(parameterTypes)));
338throw new ArgumentException(SR.Argument_MustBeTypeBuilder, nameof(type));
350throw new ArgumentException(SR.Argument_NeedGenericMethodDefinition, nameof(method));
355throw new ArgumentException(SR.Argument_MethodNeedGenericDeclaringType, nameof(method));
360throw new ArgumentException(SR.Argument_InvalidMethodDeclaringType, nameof(type));
373throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(type));
385throw new ArgumentException(SR.Argument_MustBeTypeBuilder, nameof(type));
390throw new ArgumentException(SR.Argument_ConstructorNeedGenericDeclaringType, nameof(constructor));
395throw new ArgumentException(SR.Argument_InvalidConstructorDeclaringType, nameof(type));
406throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(type));
418throw new ArgumentException(SR.Argument_MustBeTypeBuilder, nameof(type));
423throw new ArgumentException(SR.Argument_FieldNeedGenericDeclaringType, nameof(field));
428throw new ArgumentException(SR.Argument_InvalidFieldDeclaringType, nameof(type));
439throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(type));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (14)
164protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetConstructor))); }
167public override ConstructorInfo[] GetConstructors(BindingFlags bindingAttr) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetConstructor))); }
170protected override MethodInfo GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetMethod))); }
173public override MethodInfo[] GetMethods(BindingFlags bindingAttr) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetMethod))); }
176public override FieldInfo GetField(string name, BindingFlags bindingAttr) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetField))); }
179public override FieldInfo[] GetFields(BindingFlags bindingAttr) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetField))); }
255public override Type MakeGenericType(params Type[] inst) { throw new InvalidOperationException(SR.Format(SR.Arg_NotGenericTypeDefinition, this)); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (62)
58public sealed override Type MakeGenericType(params Type[] typeArguments) => throw new NotSupportedException(SR.NotSupported_SignatureType); // There is no SignatureType for type definition types so it would never be legal to call this.
85public sealed override Assembly Assembly => throw new NotSupportedException(SR.NotSupported_SignatureType);
86public sealed override Module Module => throw new NotSupportedException(SR.NotSupported_SignatureType);
88public sealed override Type ReflectedType => throw new NotSupportedException(SR.NotSupported_SignatureType);
89public sealed override Type BaseType => throw new NotSupportedException(SR.NotSupported_SignatureType);
92public sealed override Type[] GetInterfaces() => throw new NotSupportedException(SR.NotSupported_SignatureType);
93public sealed override bool IsAssignableFrom([NotNullWhen(true)] Type? c) => throw new NotSupportedException(SR.NotSupported_SignatureType);
94public sealed override int MetadataToken => throw new NotSupportedException(SR.NotSupported_SignatureType);
95public sealed override bool HasSameMetadataDefinitionAs(MemberInfo other) => throw new NotSupportedException(SR.NotSupported_SignatureType);
97public sealed override Type DeclaringType => throw new NotSupportedException(SR.NotSupported_SignatureType);
98public sealed override MethodBase DeclaringMethod => throw new NotSupportedException(SR.NotSupported_SignatureType);
100public sealed override Type[] GetGenericParameterConstraints() => throw new NotSupportedException(SR.NotSupported_SignatureType);
101public sealed override GenericParameterAttributes GenericParameterAttributes => throw new NotSupportedException(SR.NotSupported_SignatureType);
102public sealed override bool IsEnumDefined(object value) => throw new NotSupportedException(SR.NotSupported_SignatureType);
103public sealed override string GetEnumName(object value) => throw new NotSupportedException(SR.NotSupported_SignatureType);
104public sealed override string[] GetEnumNames() => throw new NotSupportedException(SR.NotSupported_SignatureType);
105public sealed override Type GetEnumUnderlyingType() => throw new NotSupportedException(SR.NotSupported_SignatureType);
107public sealed override Array GetEnumValues() => throw new NotSupportedException(SR.NotSupported_SignatureType);
108public sealed override Guid GUID => throw new NotSupportedException(SR.NotSupported_SignatureType);
109protected sealed override TypeCode GetTypeCodeImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
110protected sealed override TypeAttributes GetAttributeFlagsImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
113public sealed override ConstructorInfo[] GetConstructors(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
116public sealed override EventInfo GetEvent(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
119public sealed override EventInfo[] GetEvents(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
122public sealed override FieldInfo GetField(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
125public sealed override FieldInfo[] GetFields(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
128public sealed override MemberInfo[] GetMembers(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
131public sealed override MethodInfo[] GetMethods(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
134public sealed override Type GetNestedType(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
137public sealed override Type[] GetNestedTypes(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
140public sealed override PropertyInfo[] GetProperties(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
143public sealed override object InvokeMember(string name, BindingFlags invokeAttr, Binder? binder, object? target, object?[]? args, ParameterModifier[]? modifiers, CultureInfo? culture, string[]? namedParameters) => throw new NotSupportedException(SR.NotSupported_SignatureType);
146protected sealed override MethodInfo GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
149protected sealed override MethodInfo GetMethodImpl(string name, int genericParameterCount, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
152protected sealed override PropertyInfo GetPropertyImpl(string name, BindingFlags bindingAttr, Binder? binder, Type? returnType, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
155public sealed override MemberInfo[] FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter? filter, object? filterCriteria) => throw new NotSupportedException(SR.NotSupported_SignatureType);
158public sealed override MemberInfo[] GetMember(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
161public sealed override MemberInfo[] GetMember(string name, MemberTypes type, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
170public sealed override MemberInfo[] GetDefaultMembers() => throw new NotSupportedException(SR.NotSupported_SignatureType);
173public sealed override EventInfo[] GetEvents() => throw new NotSupportedException(SR.NotSupported_SignatureType);
175public sealed override object[] GetCustomAttributes(bool inherit) => throw new NotSupportedException(SR.NotSupported_SignatureType);
176public sealed override object[] GetCustomAttributes(Type attributeType, bool inherit) => throw new NotSupportedException(SR.NotSupported_SignatureType);
177public sealed override bool IsDefined(Type attributeType, bool inherit) => throw new NotSupportedException(SR.NotSupported_SignatureType);
178public sealed override IList<CustomAttributeData> GetCustomAttributesData() => throw new NotSupportedException(SR.NotSupported_SignatureType);
182public sealed override Type GetInterface(string name, bool ignoreCase) => throw new NotSupportedException(SR.NotSupported_SignatureType);
185protected sealed override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
187protected sealed override bool IsCOMObjectImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
188protected sealed override bool IsPrimitiveImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
189public sealed override IEnumerable<CustomAttributeData> CustomAttributes => throw new NotSupportedException(SR.NotSupported_SignatureType);
192public sealed override Type[] FindInterfaces(TypeFilter filter, object? filterCriteria) => throw new NotSupportedException(SR.NotSupported_SignatureType);
193public sealed override InterfaceMapping GetInterfaceMap([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => throw new NotSupportedException(SR.NotSupported_SignatureType);
194protected sealed override bool IsContextfulImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
196public sealed override bool IsEquivalentTo([NotNullWhen(true)] Type? other) => throw new NotSupportedException(SR.NotSupported_SignatureType);
197public sealed override bool IsInstanceOfType([NotNullWhen(true)] object? o) => throw new NotSupportedException(SR.NotSupported_SignatureType);
198protected sealed override bool IsMarshalByRefImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
199public sealed override bool IsSecurityCritical => throw new NotSupportedException(SR.NotSupported_SignatureType);
200public sealed override bool IsSecuritySafeCritical => throw new NotSupportedException(SR.NotSupported_SignatureType);
201public sealed override bool IsSecurityTransparent => throw new NotSupportedException(SR.NotSupported_SignatureType);
203public sealed override bool IsSerializable => throw new NotSupportedException(SR.NotSupported_SignatureType);
204public sealed override bool IsSubclassOf(Type c) => throw new NotSupportedException(SR.NotSupported_SignatureType);
207public sealed override StructLayoutAttribute StructLayoutAttribute => throw new NotSupportedException(SR.NotSupported_SignatureType);
209public sealed override RuntimeTypeHandle TypeHandle => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ManifestBasedResourceGroveler.cs (15)
140throw new ArgumentException(SR.Format(SR.Arg_InvalidNeutralResourcesLanguage_FallbackLoc, fallbackLocation));
158throw new ArgumentException(SR.Format(SR.Arg_InvalidNeutralResourcesLanguage_Asm_Culture, a, attr.CultureName), e);
209throw new NotSupportedException(SR.Format(SR.NotSupported_ObsoleteResourcesFile, _mediator.MainAssembly.GetName().Name));
233throw new NotSupportedException(SR.ResourceManager_ReflectionNotAllowed);
265throw new InvalidOperationException(SR.Format(SR.InvalidOperation_ResMgrBadResSet_Type, _mediator.UserResourceSet.AssemblyQualifiedName), e);
342throw new MissingManifestResourceException(SR.Format(SR.MissingManifestResource_MultipleBlobs, name, satellite.ToString()));
433throw new MissingSatelliteAssemblyException(SR.Format(SR.MissingSatelliteAssembly_Culture_Name, _mediator.NeutralResourcesCulture, satAssemName), missingCultureName);
475SR.Format(SR.MissingManifestResource_NoNeutralAsm,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (68)
125throw new ArgumentException(SR.Argument_StreamNotReadable);
184throw new BadImageFormatException(SR.BadImageFormat_NegativeStringLength);
222throw new FormatException(SR.Format(SR.BadImageFormat_ResourcesNameInvalidOffset, r));
235throw new InvalidOperationException(SR.ResourceReaderIsClosed);
318throw new FormatException(SR.Format(SR.BadImageFormat_ResourcesDataInvalidOffset, dataPos));
339throw new BadImageFormatException(SR.BadImageFormat_NegativeStringLength);
348throw new BadImageFormatException(SR.BadImageFormat_ResourcesNameTooLong);
364throw new BadImageFormatException(SR.BadImageFormat_ResourceNameCorrupted);
387throw new BadImageFormatException(SR.BadImageFormat_NegativeStringLength);
393throw new BadImageFormatException(SR.Format(SR.BadImageFormat_ResourcesIndexTooLong, index));
416throw new FormatException(SR.Format(SR.BadImageFormat_ResourcesDataInvalidOffset, dataOffset));
430throw new EndOfStreamException(SR.Format(SR.BadImageFormat_ResourceNameCorrupted_NameIndex, index));
436throw new FormatException(SR.Format(SR.BadImageFormat_ResourcesDataInvalidOffset, dataOffset));
457throw new FormatException(SR.Format(SR.BadImageFormat_ResourcesDataInvalidOffset, dataPos));
483throw new InvalidOperationException(SR.Format(SR.InvalidOperation_ResourceNotString_Type, FindType(typeIndex).FullName));
496throw new InvalidOperationException(SR.Format(SR.InvalidOperation_ResourceNotString_Type, typeString));
545throw new BadImageFormatException(SR.BadImageFormat_TypeMismatch, eof);
549throw new BadImageFormatException(SR.BadImageFormat_TypeMismatch, e);
627throw new BadImageFormatException(SR.BadImageFormat_TypeMismatch, eof);
631throw new BadImageFormatException(SR.BadImageFormat_TypeMismatch, e);
704throw new BadImageFormatException(SR.Format(SR.BadImageFormat_ResourceDataLengthInvalid, len));
711throw new BadImageFormatException(SR.Format(SR.BadImageFormat_ResourceDataLengthInvalid, len));
718throw new BadImageFormatException(SR.Format(SR.BadImageFormat_ResourceDataLengthInvalid, len));
732throw new BadImageFormatException(SR.Format(SR.BadImageFormat_ResourceDataLengthInvalid, len));
744throw new BadImageFormatException(SR.Format(SR.BadImageFormat_ResourceDataLengthInvalid, len));
758throw new BadImageFormatException(SR.BadImageFormat_TypeMismatch);
786throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted, eof);
790throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted, e);
804throw new ArgumentException(SR.Resources_StreamNotValid);
813throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
828throw new NotSupportedException(SR.Format(SR.NotSupported_WrongResourceReader_Type, readerType));
842throw new ArgumentException(SR.Format(SR.Arg_ResourceFileUnsupportedVersion, CurrentVersion, version));
848throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
856throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
898throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
919throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
930throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
946throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
955throw new BadImageFormatException(SR.BadImageFormat_ResourcesHeaderCorrupted);
966throw new NotSupportedException(SR.ResourceManager_ReflectionNotAllowed);
971throw new BadImageFormatException(SR.BadImageFormat_InvalidType);
1015throw new NotSupportedException(SR.NotSupported_ResourceObjectSerialization, fileNotFoundException);
1085if (_currentName == ENUM_DONE) throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
1086if (!_currentIsValid) throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
1087if (_reader._resCache == null) throw new InvalidOperationException(SR.ResourceReaderIsClosed);
1102if (_currentName == ENUM_DONE) throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
1103if (!_currentIsValid) throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
1104if (_reader._resCache == null) throw new InvalidOperationException(SR.ResourceReaderIsClosed);
1139if (_currentName == ENUM_DONE) throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
1140if (!_currentIsValid) throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
1141if (_reader._resCache == null) throw new InvalidOperationException(SR.ResourceReaderIsClosed);
1153if (_reader._resCache == null) throw new InvalidOperationException(SR.ResourceReaderIsClosed);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (14)
112throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(t));
116throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(t));
127throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(T));
565throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(structureType));
569throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(structureType));
613throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(T));
1157throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(type));
1175throw new ArgumentException(SR.Argument_TypeMustNotBeComImport, nameof(type));
1179throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(type));
1201throw new ArgumentException(SR.Argument_MustBeRuntimeType, nameof(t));
1205throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(t));
1213throw new ArgumentException(SR.Arg_MustBeDelegate, nameof(t));
1226throw new ArgumentException(SR.Argument_NeedNonGenericType, nameof(TDelegate));
1234throw new ArgumentException(SR.Arg_MustBeDelegate, nameof(TDelegate));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshalling\ComVariant.cs (11)
154throw new PlatformNotSupportedException(SR.ComVariant_SafeArray_PlatformNotSupported);
359throw new ArgumentException(SR.UnsupportedType, nameof(T));
385throw new ArgumentException(SR.ComVariant_VT_DECIMAL_NotSupported_CreateRaw, nameof(vt));
389throw new ArgumentException(SR.ComVariant_VT_VARIANT_In_Variant, nameof(vt));
393throw new PlatformNotSupportedException(SR.ComVariant_SafeArray_PlatformNotSupported);
416_ => throw new ArgumentException(SR.Format(SR.ComVariant_SizeMustMatchVariantSize, nameof(T), nameof(vt)))
431throw new InvalidOperationException(SR.Format(SR.ComVariant_TypeIsNotSupportedType, VarType, string.Join(", ", requiredType.ToArray())));
550throw new ArgumentException(SR.UnsupportedType, nameof(T));
575throw new ArgumentException(SR.ComVariant_VT_DECIMAL_NotSupported_RawDataRef, nameof(T));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Versioning\VersioningHelper.cs (11)
37throw new ArgumentException(SR.Format(SR.Argument_ResourceScopeWrongDirection, fromResType, toResType), nameof(from));
42throw new ArgumentNullException(nameof(type), SR.ArgumentNull_TypeRequiredByResourceScope);
112throw new ArgumentException(SR.Format(SR.Argument_BadResourceScopeTypeBits, consumeAsScope), nameof(consumeAsScope));
126throw new ArgumentException(SR.Format(SR.Argument_BadResourceScopeTypeBits, calleeScope), nameof(calleeScope));
147throw new ArgumentException(SR.Format(SR.Argument_BadResourceScopeVisibilityBits, consumeAsScope), nameof(consumeAsScope));
161throw new ArgumentException(SR.Format(SR.Argument_BadResourceScopeVisibilityBits, calleeScope), nameof(calleeScope));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\EncoderExceptionFallback.cs (13)
39SR.Format(SR.Argument_InvalidCodePageConversionIndex, (int)charUnknown, index), charUnknown, index);
47SR.Format(SR.ArgumentOutOfRange_Range, 0xD800, 0xDBFF));
52SR.Format(SR.ArgumentOutOfRange_Range, 0xDC00, 0xDFFF));
59SR.Format(SR.Argument_InvalidCodePageConversionIndex, iTemp, index), charUnknownHigh, charUnknownLow, index);
81: base(SR.Arg_ArgumentException)
111SR.Format(SR.ArgumentOutOfRange_Range, 0xD800, 0xDBFF));
116SR.Format(SR.ArgumentOutOfRange_Range, 0xDC00, 0xDFFF));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (19)
222throw new ArgumentException(SR.Format(SR.Argument_CodepageNotSupported, codepage), nameof(codepage));
240string exceptionMessage = SR.Format(SR.Encoding_UTF7_Disabled, moreInfoUrl);
249nameof(codepage), SR.Format(SR.ArgumentOutOfRange_Range, 0, 65535));
252throw new NotSupportedException(SR.Format(SR.NotSupported_NoCodepageData, codepage));
334throw new NotSupportedException(SR.Format(SR.NotSupported_NoCodepageData, _codePage));
477throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
491throw new InvalidOperationException(SR.InvalidOperation_ReadOnly);
1099SR.Format(SR.Argument_EncodingConversionOverflowBytes, _codePage, EncoderFallback.GetType()), "bytes");
1119throw new ArgumentException(SR.Argument_ConversionOverflow);
1127SR.Format(SR.Argument_EncodingConversionOverflowChars, _codePage, DecoderFallback.GetType()), "chars");
1438throw new ArgumentException(SR.Format(SR.Argument_EncoderFallbackNotEmpty,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (34)
129throw new ArgumentOutOfRangeException(nameof(length), SR.ArgumentOutOfRange_IndexLength);
154throw new ArgumentOutOfRangeException(nameof(capacity), SR.ArgumentOutOfRange_Capacity);
203throw new SerializationException(SR.Serialization_StringBuilderMaxCapacity);
214throw new SerializationException(SR.Serialization_StringBuilderCapacity);
274throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_Capacity);
278throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_SmallCapacity);
338throw new ArgumentOutOfRangeException(null, SR.InvalidOperation_ConcurrentOperationsNotSupported);
364throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_StartIndexLargerThanLength);
369throw new ArgumentOutOfRangeException(nameof(length), SR.ArgumentOutOfRange_IndexLength);
435throw new ArgumentOutOfRangeException(nameof(value), SR.ArgumentOutOfRange_SmallCapacity);
714throw new ArgumentOutOfRangeException(nameof(repeatCount), SR.ArgumentOutOfRange_LengthGreaterThanCapacity);
760throw new ArgumentOutOfRangeException(nameof(charCount), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
809throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
848throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
865throw new ArgumentOutOfRangeException(nameof(Capacity), SR.ArgumentOutOfRange_Capacity);
903throw new ArgumentException(SR.ArgumentOutOfRange_OffsetOut);
915throw new ArgumentOutOfRangeException(nameof(sourceIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
920throw new ArgumentException(SR.Arg_LongerThanSrcString);
967throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1007throw new ArgumentOutOfRangeException(nameof(length), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1335throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1362throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1388throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1403throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1419throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
1455throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2135throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2139throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2143throw new ArgumentException(SR.Arg_EmptySpan, nameof(oldValue));
2264throw new ArgumentOutOfRangeException(nameof(startIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2269throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
2391throw new ArgumentOutOfRangeException(nameof(valueCount), SR.ArgumentOutOfRange_LengthGreaterThanCapacity);
2639throw new ArgumentOutOfRangeException("requiredLength", SR.ArgumentOutOfRange_SmallCapacity);
2728throw new ArgumentOutOfRangeException("requiredLength", SR.ArgumentOutOfRange_SmallCapacity);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (20)
93throw new ArgumentOutOfRangeException(nameof(chars), SR.ArgumentOutOfRange_IndexCountBuffer);
150throw new ArgumentOutOfRangeException(nameof(s), SR.ArgumentOutOfRange_IndexCount);
153throw new ArgumentOutOfRangeException(nameof(byteIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
188throw new ArgumentOutOfRangeException(nameof(chars), SR.ArgumentOutOfRange_IndexCountBuffer);
191throw new ArgumentOutOfRangeException(nameof(byteIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
240throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
280throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
283throw new ArgumentOutOfRangeException(nameof(charIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
332throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
357throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_GetByteCountOverflow);
382throw new ArgumentException(SR.Format(SR.Argument_EncoderFallbackNotEmpty, this.EncodingName, encoder.Fallback?.GetType()));
600SR.Format(SR.Argument_RecursiveFallback, charLeftOver), nameof(chars));
665throw new ArgumentException(SR.Format(SR.Argument_EncoderFallbackNotEmpty, this.EncodingName, encoder.Fallback?.GetType()));
938SR.Format(SR.Argument_RecursiveFallback, charLeftOver), nameof(chars));
1759throw new ArgumentOutOfRangeException(nameof(charCount), SR.ArgumentOutOfRange_GetByteCountOverflow);
1779throw new ArgumentOutOfRangeException(nameof(byteCount), SR.ArgumentOutOfRange_GetCharCountOverflow);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (17)
101throw new ArgumentOutOfRangeException(nameof(chars), SR.ArgumentOutOfRange_IndexCountBuffer);
158throw new ArgumentOutOfRangeException(nameof(s), SR.ArgumentOutOfRange_IndexCount);
161throw new ArgumentOutOfRangeException(nameof(byteIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
196throw new ArgumentOutOfRangeException(nameof(chars), SR.ArgumentOutOfRange_IndexCountBuffer);
199throw new ArgumentOutOfRangeException(nameof(byteIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
248throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
288throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
291throw new ArgumentOutOfRangeException(nameof(charIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
340throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
375throw new ArgumentException(SR.Format(SR.Argument_EncoderFallbackNotEmpty, this.EncodingName, encoder.Fallback?.GetType().ToString() ?? string.Empty));
473throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_GetByteCountOverflow);
510throw new ArgumentException(SR.Format(SR.Argument_EncoderFallbackNotEmpty, this.EncodingName, encoder.Fallback?.GetType()));
817throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_GetByteCountOverflow);
1082throw new ArgumentOutOfRangeException(nameof(charCount), SR.ArgumentOutOfRange_GetByteCountOverflow);
1108throw new ArgumentOutOfRangeException(nameof(byteCount), SR.ArgumentOutOfRange_GetCharCountOverflow);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (11)
137throw new ArgumentOutOfRangeException(nameof(chars), SR.ArgumentOutOfRange_IndexCountBuffer);
194throw new ArgumentOutOfRangeException(nameof(s), SR.ArgumentOutOfRange_IndexCount);
197throw new ArgumentOutOfRangeException(nameof(byteIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
232throw new ArgumentOutOfRangeException(nameof(chars), SR.ArgumentOutOfRange_IndexCountBuffer);
235throw new ArgumentOutOfRangeException(nameof(byteIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
284throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
324throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
327throw new ArgumentOutOfRangeException(nameof(charIndex), SR.ArgumentOutOfRange_IndexMustBeLessOrEqual);
376throw new ArgumentOutOfRangeException(nameof(bytes), SR.ArgumentOutOfRange_IndexCountBuffer);
748throw new ArgumentOutOfRangeException(nameof(charCount), SR.ArgumentOutOfRange_GetByteCountOverflow);
905throw new ArgumentException(SR.Argument_InvalidCharSequenceNoIndex);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\SemaphoreSlim.cs (11)
152nameof(initialCount), initialCount, SR.SemaphoreSlim_ctor_InitialCountWrong);
158throw new ArgumentOutOfRangeException(nameof(maxCount), maxCount, SR.SemaphoreSlim_ctor_MaxCountWrong);
217nameof(timeout), timeout, SR.SemaphoreSlim_Wait_TimeSpanTimeoutWrong);
247nameof(timeout), timeout, SR.SemaphoreSlim_Wait_TimeSpanTimeoutWrong);
270nameof(millisecondsTimeout), millisecondsTimeout, SR.SemaphoreSlim_Wait_TimeoutWrong);
293nameof(millisecondsTimeout), millisecondsTimeout, SR.SemaphoreSlim_Wait_TimeoutWrong);
557nameof(millisecondsTimeout), millisecondsTimeout, SR.SemaphoreSlim_Wait_TimeoutWrong);
589nameof(timeout), timeout, SR.SemaphoreSlim_Wait_TimeSpanTimeoutWrong);
622nameof(timeout), timeout, SR.SemaphoreSlim_Wait_TimeSpanTimeoutWrong);
652nameof(millisecondsTimeout), millisecondsTimeout, SR.SemaphoreSlim_Wait_TimeoutWrong);
839nameof(releaseCount), releaseCount, SR.SemaphoreSlim_Release_CountWrong);
src\runtime\src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (165)
83throw new ArgumentException(SR.Format(SR.Argument_TypeContainsReferences, targetType));
101throw new ArgumentException(SR.Argument_DestinationTooShort, "destination");
107throw new ArgumentException(SR.Arg_SpanMustHaveElementsForColor, paramName);
113throw new ArgumentException(SR.Argument_InvalidTimeSpanStyles, "styles");
119throw new ArgumentException(SR.Format(SR.Argument_InvalidEnumValue, value, typeof(TEnum).Name), argumentName);
125throw new ArgumentException(SR.Argument_OverlapAlignmentMismatch);
131throw new ArgumentNullException("value", SR.ArgumentNull_TypedRefType);
143throw new ArgumentException(SR.Format(SR.ArgumentException_ValueTupleIncorrectType, obj.GetType()), "other");
163throw new ArgumentException(SR.Format(SR.Arg_BogusIComparer, comparer));
218throw new ArgumentOutOfRangeException(nameof(month), month, SR.ArgumentOutOfRange_Month);
224throw new ArgumentOutOfRangeException(nameof(dayNumber), dayNumber, SR.ArgumentOutOfRange_DayNumber);
230throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadYearMonthDay);
236throw new ArgumentOutOfRangeException(null, SR.ArgumentOutOfRange_BadHourMinuteSecond);
242throw new ArgumentOutOfRangeException(null, SR.Overflow_TimeSpanTooLong);
248throw new ArgumentOutOfRangeException(name, SR.ArgumentOutOfRange_RoundingDigits);
254throw new ArgumentOutOfRangeException(parameterName, value, SR.Format(SR.ArgumentOutOfRange_Range, minInclusive, maxInclusive));
266throw new OverflowException(SR.Overflow_NegateTwosCompNum);
272throw new OverflowException(SR.Overflow_TimeSpanTooLong);
278throw new OverflowException(SR.Overflow_Duration);
284throw new ArgumentException(SR.Arg_CannotBeNaN);
290throw new ArgumentException(SR.Arg_CannotBeNaN, GetArgumentName(argument));
309return new ArgumentException(SR.Format(SR.Argument_AddingDuplicateWithKey, key));
381new EndOfStreamException(SR.IO_EOF_ReadBeyondEOF);
404throw new NullReferenceException(SR.Arg_NullArgumentNullRef);
428throw new NotSupportedException(SR.NotSupported_UnseekableStream);
434throw new NotSupportedException(SR.NotSupported_UnreadableStream);
440throw new NotSupportedException(SR.NotSupported_UnwritableStream);
458throw new ObjectDisposedException(objectName, SR.ObjectDisposed_StreamClosed);
464throw new ObjectDisposedException(null, SR.ObjectDisposed_FileClosed);
500throw new OutOfMemoryException(SR.OutOfMemory_StringTooLong);
506throw new OutOfMemoryException(SR.Lock_Enter_WaiterCountOverflow_OutOfMemoryException);
512throw new ArgumentException(SR.Argument_IncompatibleArrayType);
518throw new ArgumentException(SR.Arg_InvalidHandle, paramName);
524throw new ArgumentOutOfRangeException(nameof(state), state, SR.Argument_UnexpectedStateForKnownCallback);
530throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
536throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
548throw new InvalidOperationException(SR.InvalidOperation_EnumFailedVersion);
554throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
560throw new InvalidOperationException(SR.InvalidOperation_NoValue);
566throw new InvalidOperationException(SR.InvalidOperation_ConcurrentOperationsNotSupported);
572throw new InvalidOperationException(SR.InvalidOperation_HandleIsNotInitialized);
578throw new InvalidOperationException(SR.InvalidOperation_HandleIsNotPinned);
590throw new InvalidOperationException(SR.InvalidOperation_InvalidUtf8);
596throw new FormatException(SR.Argument_BadFormatSpecifier);
602throw new FormatException(SR.Format_BadHexChar);
608throw new FormatException(SR.Format_BadHexLength);
614throw new FormatException(SR.Format_NeedSingleChar);
620throw new FormatException(SR.Format(SR.Format_BadBoolean, new string(value)));
626throw new ArgumentOutOfRangeException("precision", SR.Format(SR.Argument_PrecisionTooLarge, StandardFormat.MaxPrecision));
632throw new ArgumentOutOfRangeException("symbol", SR.Argument_BadFormatSpecifier);
638throw new ArgumentOutOfRangeException(paramName, SR.ArgumentOutOfRange_NeedNonNegNum);
644throw new ArgumentOutOfRangeException("value", SR.ArgumentOutOfRange_Enum);
668throw new FormatException(SR.Format_InvalidString);
674throw new FormatException(SR.Format(SR.Format_InvalidStringWithOffsetAndReason, offset, GetResourceString(resource)));
680throw new FormatException(SR.Format_IndexOutOfRange);
686throw new SynchronizationLockException(SR.Lock_Exit_SynchronizationLockException);
692return new AmbiguousMatchException(SR.Format(SR.Arg_AmbiguousMatchException_MemberInfo, declaringType, memberInfo));
697return new AmbiguousMatchException(SR.Format(SR.Arg_AmbiguousMatchException_Attribute, attribute));
702return new AmbiguousMatchException(SR.Format(SR.Arg_AmbiguousMatchException_CustomAttributeData, customAttributeData));
710return new ArgumentOutOfRangeException(nameof(offset), SR.ArgumentOutOfRange_NeedNonNegNum);
712return new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum);
715return new ArgumentException(SR.Argument_InvalidOffLen);
730return new ArgumentException(SR.Format(SR.Arg_WrongType, key, targetType), nameof(key));
735return new ArgumentException(SR.Format(SR.Arg_WrongType, value, targetType), nameof(value));
740return new KeyNotFoundException(SR.Format(SR.Arg_KeyNotFoundWithKey, key));
762SR.InvalidOperation_EnumNotStarted :
763SR.InvalidOperation_EnumEnded);
1086return SR.ArgumentOutOfRange_IndexMustBeLessOrEqual;
1088return SR.ArgumentOutOfRange_IndexMustBeLess;
1090return SR.ArgumentOutOfRange_IndexCount;
1092return SR.ArgumentOutOfRange_IndexCountBuffer;
1094return SR.ArgumentOutOfRange_Count;
1096return SR.ArgumentOutOfRange_Year;
1098return SR.Arg_ArrayPlusOffTooSmall;
1100return SR.Arg_ByteArrayTooSmallForValue;
1102return SR.NotSupported_ReadOnlyCollection;
1104return SR.Arg_RankMultiDimNotSupported;
1106return SR.Arg_NonZeroLowerBound;
1108return SR.ArgumentOutOfRange_GetCharCountOverflow;
1110return SR.ArgumentOutOfRange_ListInsert;
1112return SR.ArgumentOutOfRange_NeedNonNegNum;
1114return SR.ArgumentOutOfRange_SmallCapacity;
1116return SR.Argument_InvalidOffLen;
1118return SR.Argument_CannotExtractScalar;
1120return SR.ArgumentOutOfRange_BiggerThanCollection;
1122return SR.Serialization_MissingKeys;
1124return SR.Serialization_NullKey;
1126return SR.NotSupported_KeyCollectionSet;
1128return SR.NotSupported_ValueCollectionSet;
1130return SR.InvalidOperation_NullArray;
1132return SR.TaskT_TransitionToFinal_AlreadyCompleted;
1134return SR.TaskCompletionSourceT_TrySetException_NullException;
1136return SR.TaskCompletionSourceT_TrySetException_NoExceptions;
1138return SR.NotSupported_StringComparison;
1140return SR.ConcurrentCollection_SyncRoot_NotSupported;
1142return SR.Task_MultiTaskContinuation_NullTask;
1144return SR.InvalidOperation_WrongAsyncResultOrEndCalledMultiple;
1146return SR.Task_MultiTaskContinuation_EmptyTaskList;
1148return SR.Task_Start_TaskCompleted;
1150return SR.Task_Start_Promise;
1152return SR.Task_Start_ContinuationTask;
1154return SR.Task_Start_AlreadyStarted;
1156return SR.Task_RunSynchronously_Continuation;
1158return SR.Task_RunSynchronously_Promise;
1160return SR.Task_RunSynchronously_TaskCompleted;
1162return SR.Task_RunSynchronously_AlreadyStarted;
1164return SR.AsyncMethodBuilder_InstanceNotInitialized;
1166return SR.Task_ContinueWith_ESandLR;
1168return SR.Task_ContinueWith_NotOnAnything;
1170return SR.Task_InvalidTimerTimeSpan;
1172return SR.Task_Delay_InvalidMillisecondsDelay;
1174return SR.Task_Dispose_NotCompleted;
1176return SR.Task_ThrowIfDisposed;
1178return SR.Task_WaitMulti_NullTask;
1180return SR.ArgumentException_OtherNotArrayOfCorrectLength;
1182return SR.ArgumentNull_Array;
1184return SR.ArgumentNull_SafeHandle;
1186return SR.ArgumentOutOfRange_EndIndexStartIndex;
1188return SR.ArgumentOutOfRange_Enum;
1190return SR.ArgumentOutOfRange_HugeArrayNotSupported;
1192return SR.Argument_AddingDuplicate;
1194return SR.Argument_InvalidArgumentForComparison;
1196return SR.Arg_LowerBoundsMustMatch;
1198return SR.Arg_MustBeType;
1200return SR.Arg_Need1DArray;
1202return SR.Arg_Need2DArray;
1204return SR.Arg_Need3DArray;
1206return SR.Arg_NeedAtLeast1Rank;
1208return SR.Arg_RankIndices;
1210return SR.Arg_RanksAndBounds;
1212return SR.InvalidOperation_IComparerFailed;
1214return SR.NotSupported_FixedSizeCollection;
1216return SR.Rank_MultiDimNotSupported;
1218return SR.Arg_TypeNotSupported;
1220return SR.Argument_SpansMustHaveSameLength;
1222return SR.Argument_InvalidFlag;
1224return SR.CancellationTokenSource_Disposed;
1226return SR.Argument_AlignmentMustBePow2;
1228return SR.ArgumentOutOfRange_NotGreaterThanBufferLength;
1230return SR.InvalidOperation_SpanOverlappedOperation;
1232return SR.InvalidOperation_TimeProviderNullLocalTimeZone;
1234return SR.InvalidOperation_TimeProviderInvalidTimestampFrequency;
1236return SR.Format_UnexpectedClosingBrace;
1238return SR.Format_UnclosedFormatItem;
1240return SR.Format_ExpectedAsciiDigit;
1242return SR.Argument_HasToBeArrayClass;
1244return SR.InvalidOperation_IncompatibleComparer;
1246return SR.ConcurrentDictionary_ItemKeyIsNull;
1248return SR.ConcurrentDictionary_TypeOfValueIncorrect;
1250return SR.InvalidOperation_NoElements;
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeOnly.cs (22)
84throw new ArgumentOutOfRangeException(nameof(ticks), SR.ArgumentOutOfRange_TimeOnlyBadTicks);
415throw new ArgumentException(SR.Arg_MustBeTimeOnly);
460throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
488throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
522throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
527throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
535throw new FormatException(SR.Argument_BadFormatSpecifier);
638throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
690throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
698throw new FormatException(SR.Argument_BadFormatSpecifier);
766throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
771throw new ArgumentException(SR.Argument_InvalidDateStyles, nameof(style));
779throw new FormatException(SR.Argument_BadFormatSpecifier);
924case ParseFailureKind.Argument_InvalidDateStyles: throw new ArgumentException(SR.Argument_InvalidDateStyles, "style");
925case ParseFailureKind.Argument_BadFormatSpecifier: throw new FormatException(SR.Argument_BadFormatSpecifier);
926case ParseFailureKind.Format_BadTimeOnly: throw new FormatException(SR.Format(SR.Format_BadTimeOnly, s.ToString()));
929throw new FormatException(SR.Format(SR.Format_DateTimeOnlyContainsNoneDateParts, s.ToString(), nameof(TimeOnly)));
999_ => throw new FormatException(SR.Format_InvalidString),
1051throw new FormatException(SR.Format(SR.Format_DateTimeOnlyContainsNoneDateParts, format.ToString(), nameof(TimeOnly)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.AdjustmentRule.cs (9)
184throw new ArgumentException(SR.Argument_DateTimeKindMustBeUnspecifiedOrUtc, nameof(dateStart));
189throw new ArgumentException(SR.Argument_DateTimeKindMustBeUnspecifiedOrUtc, nameof(dateEnd));
194throw new ArgumentException(SR.Argument_TransitionTimesAreIdentical, nameof(daylightTransitionEnd));
199throw new ArgumentException(SR.Argument_OutOfOrderDateTimes, nameof(dateStart));
208throw new ArgumentOutOfRangeException(nameof(daylightDelta), daylightDelta, SR.ArgumentOutOfRange_UtcOffset);
213throw new ArgumentException(SR.Argument_TimeSpanHasSeconds, nameof(daylightDelta));
218throw new ArgumentException(SR.Argument_DateTimeHasTimeOfDay, nameof(dateStart));
223throw new ArgumentException(SR.Argument_DateTimeHasTimeOfDay, nameof(dateEnd));
259throw new SerializationException(SR.Serialization_InvalidData, e);
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (20)
225throw new ArgumentException(SR.Argument_DateTimeOffsetIsNotAmbiguous, nameof(dateTimeOffset));
239throw new ArgumentException(SR.Argument_DateTimeIsNotAmbiguous, nameof(dateTime));
261throw new ArgumentException(SR.Argument_DateTimeIsNotAmbiguous, nameof(dateTime));
509throw new SecurityException(SR.Format(SR.Security_CannotReadFileData, id), e);
511throw new TimeZoneNotFoundException(SR.Format(SR.TimeZoneNotFound_MissingData, id), e);
649throw new ArgumentException(SR.Argument_ConvertMismatch, nameof(sourceTimeZone));
656throw new ArgumentException(SR.Argument_DateTimeIsInvalid, nameof(dateTime));
751throw new ArgumentException(SR.Format(SR.Argument_InvalidSerializedString, source), nameof(source));
1009throw new SerializationException(SR.Format(SR.Serialization_CorruptField, "SupportsDaylightSavingTime"));
1014throw new SerializationException(SR.Serialization_InvalidData, e);
1018throw new SerializationException(SR.Serialization_InvalidData, e);
1320throw new ArgumentOutOfRangeException(nameof(baseUtcOffset), SR.ArgumentOutOfRange_UtcOffset);
1325throw new ArgumentException(SR.Argument_TimeSpanHasSeconds, nameof(baseUtcOffset));
1347throw new InvalidTimeZoneException(SR.Argument_AdjustmentRulesNoNulls);
1352throw new InvalidTimeZoneException(SR.ArgumentOutOfRange_UtcOffsetAndDaylightDelta);
1358throw new InvalidTimeZoneException(SR.Argument_AdjustmentRulesOutOfOrder);
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.StringSerializer.cs (39)
167throw new SerializationException(SR.Serialization_InvalidData, ex);
171throw new SerializationException(SR.Serialization_InvalidData, ex);
388throw new SerializationException(SR.Format(SR.Serialization_InvalidEscapeSequence, c));
401throw new SerializationException(SR.Serialization_InvalidData);
443throw new SerializationException(SR.Serialization_InvalidData);
451throw new SerializationException(SR.Serialization_InvalidData);
465throw new SerializationException(SR.Serialization_InvalidData);
469throw new SerializationException(SR.Serialization_InvalidData);
493throw new SerializationException(SR.Serialization_InvalidData);
497throw new SerializationException(SR.Serialization_InvalidData);
513throw new SerializationException(SR.Serialization_InvalidData);
527throw new SerializationException(SR.Format(SR.Serialization_InvalidEscapeSequence, string.Empty));
530throw new SerializationException(SR.Serialization_InvalidData);
541throw new SerializationException(SR.Serialization_InvalidData);
558throw new SerializationException(SR.Serialization_InvalidData, e);
570throw new SerializationException(SR.Serialization_InvalidData);
583throw new SerializationException(SR.Serialization_InvalidData);
631throw new SerializationException(SR.Serialization_InvalidData);
657throw new SerializationException(SR.Serialization_InvalidData);
678throw new SerializationException(SR.Serialization_InvalidData, e);
709throw new SerializationException(SR.Serialization_InvalidData);
714throw new SerializationException(SR.Serialization_InvalidData, e);
739throw new SerializationException(SR.Serialization_InvalidData);
743throw new SerializationException(SR.Serialization_InvalidData);
762throw new SerializationException(SR.Serialization_InvalidData);
774throw new SerializationException(SR.Serialization_InvalidData);
790throw new SerializationException(SR.Serialization_InvalidData);
807throw new SerializationException(SR.Serialization_InvalidData);
833throw new SerializationException(SR.Serialization_InvalidData, e);
861throw new SerializationException(SR.Serialization_InvalidData);
866throw new SerializationException(SR.Serialization_InvalidData);
873throw new SerializationException(SR.Serialization_InvalidData);
881throw new SerializationException(SR.Serialization_InvalidData);
900throw new SerializationException(SR.Serialization_InvalidData, e);
914throw new SerializationException(SR.Serialization_InvalidData, e);
922throw new SerializationException(SR.Serialization_InvalidData);
952throw new SerializationException(SR.Serialization_InvalidData);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Tuple.cs (17)
154throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
274throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
399throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
534throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
679throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
834throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
999throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
1128throw new ArgumentException(SR.ArgumentException_TupleLastArgumentNotATuple);
1179throw new ArgumentException(SR.Format(SR.ArgumentException_TupleIncorrectType, GetType()), nameof(other));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (27)
66public virtual bool IsByRefLike { [Intrinsic] get => throw new NotSupportedException(SR.NotSupported_SubclassOverride); }
75public virtual int GetArrayRank() => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
78public virtual Type GetGenericTypeDefinition() => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
80public virtual Type[] GetGenericArguments() => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
85public virtual int GenericParameterPosition => throw new InvalidOperationException(SR.Arg_NotGenericParameter);
90throw new InvalidOperationException(SR.Arg_NotGenericParameter);
248public virtual MemberInfo[] GetMember(string name, MemberTypes type, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
289new ArgumentException(SR.Format(SR.Arg_MemberInfoNotFound, member.Name), nameof(member));
488throw new ArgumentException(SR.ArgumentNull_ArrayValue, nameof(args));
600public virtual InterfaceMapping GetInterfaceMap([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
615public virtual Type? GetNullableUnderlyingType() => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
623throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
627throw new ArgumentException(SR.Argument_InvalidEnum, "enumType");
636throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
652public virtual Array GetEnumValuesAsUnderlyingType() => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
693throw new ArgumentException(SR.Format(SR.FunctionPointer_InvalidCallingConvention, fullName), nameof(callingConventions));
707throw new ArgumentException(SR.ManagedFunctionPointer_CallingConventionsNotAllowed, nameof(callingConventions));
719throw new ArgumentException(SR.FunctionPointer_CallingConventionsUnbalanced, nameof(returnType));
722throw new ArgumentException(SR.FunctionPointer_CallingConventionsUnbalanced, nameof(returnType));
730throw new ArgumentException(SR.FunctionPointer_CallingConventionsUnbalanced, nameof(returnType));
766public virtual Type MakeFunctionPointerType(Type[]? parameterTypes, bool isUnmanaged = false) => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
770public virtual Type MakeGenericType(params Type[] typeArguments) => throw new NotSupportedException(SR.NotSupported_SubclassOverride);
819throw new ArgumentException(SR.Format(SR.Arg_NotGenericTypeDefinition, genericTypeDefinition), nameof(genericTypeDefinition));
883public static Type? ReflectionOnlyGetType(string typeName, bool throwIfNotFound, bool ignoreCase) => throw new PlatformNotSupportedException(SR.PlatformNotSupported_ReflectionOnly);
System\GC.NativeAot.cs (23)
155throw new ArgumentOutOfRangeException(nameof(mode), SR.ArgumentOutOfRange_Enum);
169throw new ArgumentException(SR.Argument_AggressiveGCRequiresMaxGeneration, nameof(generation));
173throw new ArgumentException(SR.Argument_AggressiveGCRequiresBlocking, nameof(blocking));
177throw new ArgumentException(SR.Argument_AggressiveGCRequiresCompacting, nameof(compacting));
214SR.Format(SR.ArgumentOutOfRange_Bounds_Lower_Upper, 1, 99));
221SR.Format(SR.ArgumentOutOfRange_Bounds_Lower_Upper, 1, 99));
228throw new InvalidOperationException(SR.InvalidOperation_NotWithConcurrentGC);
287throw new InvalidOperationException(SR.InvalidOperation_NotWithConcurrentGC);
335throw new InvalidOperationException(SR.InvalidOperationException_NoGCRegionNotInProgress);
337throw new InvalidOperationException(SR.InvalidOperationException_NoGCRegionAllocationExceeded);
339throw new InvalidOperationException(SR.InvalidOperationException_NoGCRegionCallbackAlreadyRegistered);
425throw new ArgumentOutOfRangeException(nameof(lohSize), SR.ArgumentOutOfRange_NoGCLohSizeGreaterTotalSize);
440throw new InvalidOperationException(SR.InvalidOperationException_AlreadyInNoGCRegion);
442throw new ArgumentOutOfRangeException(nameof(totalSize), SR.ArgumentOutOfRangeException_NoGCRegionSizeTooLarge);
462SR.InvalidOperationException_NoGCRegionNotInProgress);
467SR.InvalidOperationException_NoGCRegionInduced);
472SR.InvalidOperationException_NoGCRegionAllocationExceeded);
782SR.Format(
783SR.ArgumentOutOfRange_Bounds_Lower_Upper,
906throw new InvalidOperationException(SR.InvalidOperationException_HardLimitTooLow);
908throw new InvalidOperationException(SR.InvalidOperationException_HardLimitInvalid);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.InvokeMember.cs (16)
29throw new InvalidOperationException(SR.Arg_GenericParameter);
34throw new ArgumentException(SR.Arg_NoAccessSpec, nameof(bindingFlags));
52throw new ArgumentException(SR.Arg_NamedParamTooBig, nameof(namedParams));
58throw new ArgumentException(SR.Arg_NamedParamTooBig, nameof(namedParams));
65throw new PlatformNotSupportedException(SR.PlatformNotSupported_ComInterop);
71throw new ArgumentException(SR.Arg_NamedParamNull, nameof(namedParams));
86throw new ArgumentException(SR.Arg_CreatInstAccess, nameof(bindingFlags));
117throw new ArgumentException(SR.Arg_FldSetGet, nameof(bindingFlags));
121throw new ArgumentException(SR.Arg_FldGetPropSet, nameof(bindingFlags));
131throw new ArgumentException(SR.Arg_FldSetPropGet, nameof(bindingFlags));
135throw new ArgumentException(SR.Arg_FldSetInvoke, nameof(bindingFlags));
184throw new ArgumentException(SR.Arg_IndexMustBeInt);
209throw new ArgumentException(SR.Arg_FldGetArgErr, nameof(bindingFlags));
218throw new ArgumentException(SR.Arg_FldSetArgErr, nameof(bindingFlags));
246throw new ArgumentException(SR.Arg_PropSetGet, nameof(bindingFlags));
255throw new ArgumentException(SR.Arg_PropSetInvoke, nameof(bindingFlags));
System\RuntimeType.NativeAot.cs (19)
95throw new ArgumentException(SR.Arg_MustBeEnumBaseTypeOrEnum, nameof(value));
101throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
109throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
120throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
143throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
161throw new ArgumentException(SR.Format(SR.Arg_EnumUnderlyingTypeAndObjectMustBeSameType, value.GetType(), Enum.InternalGetUnderlyingType(this)));
163throw new InvalidOperationException(SR.InvalidOperation_UnknownEnumType);
169throw new ArgumentException(SR.Format(SR.Arg_EnumAndObjectMustBeSameType, value.GetType(), this));
175throw new ArgumentException(SR.Format(SR.Arg_EnumUnderlyingTypeAndObjectMustBeSameType, value.GetType(), underlyingType));
186throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
205throw new ArgumentException(SR.Arg_MustBeEnum, "enumType");
325return pEEType->IsArray ? pEEType->ArrayRank : throw new ArgumentException(SR.Argument_HasToBeArrayClass);
429throw new InvalidOperationException(SR.InvalidOperation_NotGenericType);
577throw new InvalidOperationException(SR.InvalidOperation_NotFunctionPointer);
602throw new InvalidOperationException(SR.InvalidOperation_NotFunctionPointer);
703throw new InvalidOperationException(SR.InvalidOperation_NotFunctionPointer);