7 references to ContainsAnyExceptInRange
System.IO.Compression (1)
System\IO\Compression\ZipHelper.cs (1)
24if (text.AsSpan().ContainsAnyExceptInRange((char)32, (char)126))
System.Net.Http (1)
System\Net\Http\Headers\UriHeaderParser.cs (1)
67!input.AsSpan(possibleUtf8Pos).ContainsAnyExceptInRange((char)0, (char)255))
System.Net.Requests (1)
src\libraries\Common\src\System\Net\HttpValidationHelpers.cs (1)
25token.AsSpan().ContainsAnyExceptInRange((char)0x20, (char)0x7e);
System.Net.WebHeaderCollection (1)
src\libraries\Common\src\System\Net\HttpValidationHelpers.cs (1)
25token.AsSpan().ContainsAnyExceptInRange((char)0x20, (char)0x7e);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (2)
441/// <inheritdoc cref="ContainsAnyExceptInRange{T}(ReadOnlySpan{T}, T, T)"/> 445ContainsAnyExceptInRange((ReadOnlySpan<T>)span, lowInclusive, highInclusive);
System.Private.Xml (1)
System\Xml\XmlCharType.cs (1)
172return !str.AsSpan(startPos, len).ContainsAnyExceptInRange('0', '9');