8 references to ByteLF
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpParser.cs (8)
64private static ReadOnlySpan<byte> RequestLineDelimiters => [ByteLF, 0]; 115array[^1] = ByteLF; 152index = memory.Span.IndexOfAny(ByteCR, ByteLF); 231if (headerSpan[^1] == ByteLF) 598if (span.Length >= 2 && span[0] == ByteCR && span[1] == ByteLF) 608var lfOrCrIndex = span.IndexOfAny(ByteCR, ByteLF); 622if ((uint)span.Length > (uint)(crIndex + 1) && span[crIndex + 1] == ByteLF) 627else if ((hasDataAfterCr = reader.TryPeek(out byte lfMaybe)) && lfMaybe == ByteLF)