11 references to NotSupported_StringComparison
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\String.Comparison.cs (5)
261throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 575throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 684throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 742throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)); 1153throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType));
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (1)
1203_ => throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)),
src\libraries\System.Private.CoreLib\src\System\String.Searching.cs (3)
63_ => throw new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType)), 261_ => throw (value is null ? new ArgumentNullException(nameof(value)) : new ArgumentException(SR.NotSupported_StringComparison, nameof(comparisonType))), 386_ => 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)
1136return SR.NotSupported_StringComparison;