12 references to NotSupported_StringComparison
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\String.Comparison.cs (5)
161throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 468throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 615throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 673throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 1084throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType));
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (1)
1199_ => throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)),
src\libraries\System.Private.CoreLib\src\System\String.Searching.cs (4)
121_ => throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)), 334_ => throw (value is null ? new ArgumentNullException(nameof(value)) : new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType))), 534_ => throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)), 663_ => throw (value is null ? new ArgumentNullException(nameof(value)) : new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType))),
src\libraries\System.Private.CoreLib\src\System\StringComparer.cs (1)
42_ => throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)),
src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
1144return SR.NotSupported_StringComparison;