9 references to ByteCR
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpParser.cs (9)
163if ((uint)offset + 9 != (uint)requestLine.Length || requestLine[offset + 8] != ByteCR) 204if (span.Length >= 2 && span[0] == ByteCR && span[1] == ByteLF) 213var lfOrCrIndex = span.IndexOfAny(ByteCR, ByteLF); 216if (span[lfOrCrIndex] == ByteCR) 328array[^2] = ByteCR; 357index = memory.Span.IndexOfAny(ByteCR, ByteLF); 381if (memory.Span[index] == ByteCR) 399if (memory.Span[index] == ByteCR) 437if (headerSpan[^2] == ByteCR)