12 references to NotSupported_StringComparison
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Comparison.cs (5)
161
throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType));
468
throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType));
622
throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType));
680
throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType));
1091
throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType));
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (1)
1222
_ => throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType)),
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Searching.cs (4)
126
_ => throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType)),
339
_ => throw (value is null ? new ArgumentNullException(nameof(value)) : new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType))),
540
_ => throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType)),
669
_ => throw (value is null ? new ArgumentNullException(nameof(value)) : new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType))),
src\runtime\src\libraries\System.Private.CoreLib\src\System\StringComparer.cs (1)
42
_ => throw new ArgumentException(SR.
NotSupported_StringComparison
, nameof(comparisonType)),
src\runtime\src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
1138
return SR.
NotSupported_StringComparison
;