15 references to Http3ConnectionErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (15)
Internal\Http3\Http3Connection.cs (3)
244
connection.OnStreamConnectionError(new
Http3ConnectionErrorException
(CoreStrings.Http3ErrorControlStreamClosed, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream));
322
OnStreamConnectionError(new
Http3ConnectionErrorException
(CoreStrings.ConnectionTimedBecauseResponseMininumDataRateNotSatisfied, Http3ErrorCode.InternalError, ConnectionEndReason.MinResponseDataRate));
727
var connectionError = new
Http3ConnectionErrorException
(CoreStrings.Http3ControlStreamErrorInitializingOutbound, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream);
Internal\Http3\Http3ControlStream.cs (7)
205
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("control"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError);
214
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("encoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError);
223
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("decoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError);
305
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ErrorUnsupportedFrameOnControlStream(_incomingFrame.FormattedType), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
324
throw new
Http3ConnectionErrorException
(CoreStrings.Http3ErrorControlStreamMultipleSettingsFrames, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
370
throw new
Http3ConnectionErrorException
(message, Http3ErrorCode.SettingsError, ConnectionEndReason.InvalidSettings);
434
throw new
Http3ConnectionErrorException
(message, Http3ErrorCode.MissingSettings, ConnectionEndReason.InvalidSettings);
Internal\Http3\Http3Stream.cs (5)
762
Http3FrameType.MaxPushId => throw new
Http3ConnectionErrorException
(
765
Http3FrameType.PushPromise => throw new
Http3ConnectionErrorException
(
784
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3StreamErrorFrameReceivedAfterTrailers(Http3Formatting.ToFormattedType(Http3FrameType.Headers)), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
883
throw new
Http3ConnectionErrorException
(CoreStrings.Http3StreamErrorDataReceivedBeforeHeaders, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
891
throw new
Http3ConnectionErrorException
(message, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);