14 references to ByteSpace
Microsoft.AspNetCore.Server.Kestrel.Core (14)
Internal\Http\HttpParser.cs (14)
266var nameEnd = headerLine.IndexOfAny(ByteColon, ByteSpace, ByteTab); 296if (ch == ByteSpace || ch == ByteTab) 306if (ch <= ByteSpace && (ch == ByteSpace || ch == ByteTab)) 313if (ch != ByteTab && ch != ByteSpace) 331if (ch <= ByteSpace && (ch == ByteSpace || ch == ByteTab)) 338if (ch != ByteTab && ch != ByteSpace) 453if (ch == ByteSpace || ch == ByteQuestionMark || ch == BytePercentage) 466var index = requestLine.Slice(offset).IndexOfAny(ByteSpace, ByteQuestionMark, BytePercentage); 474index = requestLine.Slice(offset).IndexOfAny(ByteSpace, ByteQuestionMark); 490if (ch == ByteSpace) 501while ((uint)offset < (uint)requestLine.Length && requestLine[offset] == ByteSpace) 554if (invalidIndex <= 0 || span[invalidIndex] != ByteSpace)