14 references to ByteSpace
Microsoft.AspNetCore.Server.Kestrel.Core (14)
Internal\Http\HttpParser.cs (14)
247var nameEnd = headerLine.IndexOfAny(ByteColon, ByteSpace, ByteTab); 277if (ch == ByteSpace || ch == ByteTab) 287if (ch <= ByteSpace && (ch == ByteSpace || ch == ByteTab)) 294if (ch != ByteTab && ch != ByteSpace) 312if (ch <= ByteSpace && (ch == ByteSpace || ch == ByteTab)) 319if (ch != ByteTab && ch != ByteSpace) 434if (ch == ByteSpace || ch == ByteQuestionMark || ch == BytePercentage) 447var index = requestLine.Slice(offset).IndexOfAny(ByteSpace, ByteQuestionMark, BytePercentage); 455index = requestLine.Slice(offset).IndexOfAny(ByteSpace, ByteQuestionMark); 471if (ch == ByteSpace) 482while ((uint)offset < (uint)requestLine.Length && requestLine[offset] == ByteSpace) 526if (invalidIndex <= 0 || span[invalidIndex] != ByteSpace)