13 references to INTERNAL_ERROR
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\Http2\Http2Connection.cs (5)
248
Abort(ex, Http2ErrorCode.
INTERNAL_ERROR
, reason);
268
Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestHeadersTimeout), Http2ErrorCode.
INTERNAL_ERROR
, ConnectionEndReason.RequestHeadersTimeout);
276
Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestBodyTimeout), Http2ErrorCode.
INTERNAL_ERROR
, ConnectionEndReason.MinRequestBodyDataRate);
382
throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorKeepAliveTimeout, Http2ErrorCode.
INTERNAL_ERROR
, ConnectionEndReason.KeepAliveTimeout);
440
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)
250
_stream.ResetAndAbort(abortReason, Http2ErrorCode.
INTERNAL_ERROR
);
255
_stream.ResetAndAbort(new ConnectionAbortedException($"{nameof(Http2OutputProducer)} has completed."), Http2ErrorCode.
INTERNAL_ERROR
);
Internal\Http2\Http2Stream.cs (2)
584
ResetAndAbort(abortReason, Http2ErrorCode.
INTERNAL_ERROR
);
587
protected override void ApplicationAbort() => ApplicationAbort(new ConnectionAbortedException(CoreStrings.ConnectionAbortedByApplication), Http2ErrorCode.
INTERNAL_ERROR
);