6 references to ErrorLength
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http\Http1Connection.cs (3)
1065parseResult.ErrorLength > 0 && 1066parseResult.ErrorOffset + parseResult.ErrorLength <= buffer.Length) 1068var errorSlice = buffer.Slice(parseResult.ErrorOffset, parseResult.ErrorLength);
Internal\Http\HttpParser.cs (3)
392if (_showErrorDetails && result.ErrorLength > 0 && result.ErrorOffset + result.ErrorLength <= buffer.Length) 394var errorSlice = buffer.Slice(result.ErrorOffset, result.ErrorLength);