6 references to ErrorLength
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http\Http1Connection.cs (3)
1020parseResult.ErrorLength > 0 && 1021parseResult.ErrorOffset + parseResult.ErrorLength <= buffer.Length) 1023var errorSlice = buffer.Slice(parseResult.ErrorOffset, parseResult.ErrorLength);
Internal\Http\HttpParser.cs (3)
373if (_showErrorDetails && result.ErrorLength > 0 && result.ErrorOffset + result.ErrorLength <= buffer.Length) 375var errorSlice = buffer.Slice(result.ErrorOffset, result.ErrorLength);