13 references to INTERNAL_ERROR
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\Http2\Http2Connection.cs (5)
244
Abort(ex, Http2ErrorCode.
INTERNAL_ERROR
, reason);
264
Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestHeadersTimeout), Http2ErrorCode.
INTERNAL_ERROR
, ConnectionEndReason.RequestHeadersTimeout);
272
Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestBodyTimeout), Http2ErrorCode.
INTERNAL_ERROR
, ConnectionEndReason.MinRequestBodyDataRate);
378
throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorKeepAliveTimeout, Http2ErrorCode.
INTERNAL_ERROR
, ConnectionEndReason.KeepAliveTimeout);
436
errorCode = 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)
253
_stream.ResetAndAbort(abortReason, Http2ErrorCode.
INTERNAL_ERROR
);
258
_stream.ResetAndAbort(new ConnectionAbortedException($"{nameof(Http2OutputProducer)} has completed."), Http2ErrorCode.
INTERNAL_ERROR
);
Internal\Http2\Http2Stream.cs (2)
585
ResetAndAbort(abortReason, Http2ErrorCode.
INTERNAL_ERROR
);
588
protected override void ApplicationAbort() => ApplicationAbort(new ConnectionAbortedException(CoreStrings.ConnectionAbortedByApplication), Http2ErrorCode.
INTERNAL_ERROR
);