17 instantiations of Http3ConnectionErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (17)
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));
742
var connectionError = new
Http3ConnectionErrorException
(CoreStrings.Http3ControlStreamErrorInitializingOutbound, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream);
Internal\Http3\Http3ControlStream.cs (9)
212
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("control"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError);
221
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("encoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError);
230
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("decoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError);
335
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ErrorUnsupportedFrameOnControlStream(incomingFrame.FormattedType), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
355
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamFrameTooLarge(http3RawFrame.FormattedType), Http3ErrorCode.FrameError, ConnectionEndReason.InvalidFrameLength);
367
throw new
Http3ConnectionErrorException
(CoreStrings.Http3ErrorControlStreamMultipleSettingsFrames, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
407
throw new
Http3ConnectionErrorException
(message, Http3ErrorCode.SettingsError, ConnectionEndReason.InvalidSettings);
490
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3ControlStreamFrameTooLarge(Http3Formatting.ToFormattedType(incomingFrame.Type)), Http3ErrorCode.FrameError, ConnectionEndReason.InvalidFrameLength);
499
throw new
Http3ConnectionErrorException
(message, Http3ErrorCode.MissingSettings, ConnectionEndReason.InvalidSettings);
Internal\Http3\Http3Stream.cs (5)
799
Http3FrameType.MaxPushId => throw new
Http3ConnectionErrorException
(
802
Http3FrameType.PushPromise => throw new
Http3ConnectionErrorException
(
823
throw new
Http3ConnectionErrorException
(CoreStrings.FormatHttp3StreamErrorFrameReceivedAfterTrailers(Http3Formatting.ToFormattedType(Http3FrameType.Headers)), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
933
throw new
Http3ConnectionErrorException
(CoreStrings.Http3StreamErrorDataReceivedBeforeHeaders, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
941
throw new
Http3ConnectionErrorException
(message, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
10 references to Http3ConnectionErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (10)
_generated\0\LoggerMessage.g.cs (1)
1144
public static partial void Http3ConnectionError(global::Microsoft.Extensions.Logging.ILogger logger, string connectionId, global::Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http3.
Http3ConnectionErrorException
ex)
Internal\Http3\Http3Connection.cs (4)
493
catch (
Http3ConnectionErrorException
ex)
742
var
connectionError = new Http3ConnectionErrorException(CoreStrings.Http3ControlStreamErrorInitializingOutbound, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream);
867
void IHttp3StreamLifetimeHandler.OnStreamConnectionError(
Http3ConnectionErrorException
ex)
872
private void OnStreamConnectionError(
Http3ConnectionErrorException
ex)
Internal\Http3\Http3ControlStream.cs (1)
243
catch (
Http3ConnectionErrorException
ex)
Internal\Http3\Http3Stream.cs (1)
685
catch (
Http3ConnectionErrorException
ex)
Internal\Http3\IHttp3StreamLifetimeHandler.cs (1)
12
void OnStreamConnectionError(
Http3ConnectionErrorException
ex);
Internal\Infrastructure\KestrelTrace.Http3.cs (2)
13
public void Http3ConnectionError(string connectionId,
Http3ConnectionErrorException
ex)
75
public static partial void Http3ConnectionError(ILogger logger, string connectionId,
Http3ConnectionErrorException
ex);