45 references to INTERNAL_ERROR
InMemory.FunctionalTests (32)
Http2\Http2ConnectionTests.cs (5)
617await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, null); 5144VerifyGoAway(await ReceiveFrameAsync(), int.MaxValue, Http2ErrorCode.INTERNAL_ERROR); 5424await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, "The connection was aborted by the application."); 5718await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, "The connection was aborted by the application."); 5795await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, "The connection was aborted by the application.");
Http2\Http2KeepAliveTests.cs (1)
204VerifyGoAway(await ReceiveFrameAsync().DefaultTimeout(), 0, Http2ErrorCode.INTERNAL_ERROR);
Http2\Http2StreamTests.cs (16)
1389await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, "Response Content-Length mismatch: too many bytes written (12 of 11)."); 1770await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, ""); 1804await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, ""); 1841await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, CoreStrings.FormatTooFewBytesWritten(6, 11)); 2235await WaitForConnectionErrorAsync<Exception>(ignoreNonGoAwayFrames: false, int.MaxValue, Http2ErrorCode.INTERNAL_ERROR); 2586await WaitForConnectionErrorAsync<Exception>(ignoreNonGoAwayFrames: false, int.MaxValue, Http2ErrorCode.INTERNAL_ERROR); 3149await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, "App Faulted"); 3360await WaitForStreamErrorAsync(expectedStreamId: 1, Http2ErrorCode.INTERNAL_ERROR, CoreStrings.ConnectionAbortedByApplication); 3412await WaitForStreamErrorAsync(expectedStreamId: 1, Http2ErrorCode.INTERNAL_ERROR, CoreStrings.ConnectionAbortedByApplication); 3437await WaitForStreamErrorAsync(expectedStreamId: 1, Http2ErrorCode.INTERNAL_ERROR, CoreStrings.ConnectionAbortedByApplication); 3464await WaitForStreamErrorAsync(expectedStreamId: 1, Http2ErrorCode.INTERNAL_ERROR, CoreStrings.ConnectionAbortedByApplication); 3854await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, null); 5343await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, 5414await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, 5493await Task.WhenAny(WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, expectedErrorMessage: null), appTcs.Task).Unwrap(); 5582await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, expectedErrorMessage: null);
Http2\Http2TimeoutTests.cs (10)
195Http2ErrorCode.INTERNAL_ERROR, 260await WaitForStreamErrorAsync(1, Http2ErrorCode.INTERNAL_ERROR, "The connection was aborted by the application."); 496Http2ErrorCode.INTERNAL_ERROR, 550Http2ErrorCode.INTERNAL_ERROR, 616Http2ErrorCode.INTERNAL_ERROR, 663Http2ErrorCode.INTERNAL_ERROR, 714Http2ErrorCode.INTERNAL_ERROR, 781Http2ErrorCode.INTERNAL_ERROR, 849Http2ErrorCode.INTERNAL_ERROR, 990Http2ErrorCode.INTERNAL_ERROR,
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\Http2\Http2Connection.cs (5)
244Abort(ex, Http2ErrorCode.INTERNAL_ERROR, reason); 264Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestHeadersTimeout), Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.RequestHeadersTimeout); 272Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestBodyTimeout), Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.MinRequestBodyDataRate); 378throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorKeepAliveTimeout, Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.KeepAliveTimeout); 436errorCode = Http2ErrorCode.INTERNAL_ERROR;
Internal\Http2\Http2FrameWriter.cs (4)
172_http2Connection.Abort(ex, Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.OutputQueueSizeExceeded); 559_http2Connection.Abort(new ConnectionAbortedException(ex.Message, ex), Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.ErrorWritingHeaders); 600_http2Connection.Abort(new ConnectionAbortedException(ex.Message, ex), Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.ErrorWritingHeaders); 1131_http2Connection.Abort(new ConnectionAbortedException("HTTP/2 connection exceeded the outgoing flow control maximum queue size."), Http2ErrorCode.INTERNAL_ERROR, ConnectionEndReason.FlowControlQueueSizeExceeded);
Internal\Http2\Http2OutputProducer.cs (2)
250_stream.ResetAndAbort(abortReason, Http2ErrorCode.INTERNAL_ERROR); 255_stream.ResetAndAbort(new ConnectionAbortedException($"{nameof(Http2OutputProducer)} has completed."), Http2ErrorCode.INTERNAL_ERROR);
Internal\Http2\Http2Stream.cs (2)
585ResetAndAbort(abortReason, Http2ErrorCode.INTERNAL_ERROR); 588protected override void ApplicationAbort() => ApplicationAbort(new ConnectionAbortedException(CoreStrings.ConnectionAbortedByApplication), Http2ErrorCode.INTERNAL_ERROR);