14 references to ByteSpace
Microsoft.AspNetCore.Server.Kestrel.Core (14)
Internal\Http\HttpParser.cs (14)
105
if (ch ==
ByteSpace
|| ch == ByteQuestionMark || ch == BytePercentage)
118
var index = requestLine.Slice(offset).IndexOfAny(
ByteSpace
, ByteQuestionMark, BytePercentage);
126
index = requestLine.Slice(offset).IndexOfAny(
ByteSpace
, ByteQuestionMark);
142
if (ch ==
ByteSpace
)
154
&& requestLine[offset] ==
ByteSpace
)
466
var nameEnd = headerLine.IndexOfAny(ByteColon,
ByteSpace
, ByteTab);
496
if (ch ==
ByteSpace
|| ch == ByteTab)
506
if (ch <=
ByteSpace
&& (ch ==
ByteSpace
|| ch == ByteTab))
513
if (ch != ByteTab && ch !=
ByteSpace
)
531
if (ch <=
ByteSpace
&& (ch ==
ByteSpace
|| ch == ByteTab))
538
if (ch != ByteTab && ch !=
ByteSpace
)
559
if (invalidIndex <= 0 || span[invalidIndex] !=
ByteSpace
)