15 instantiations of Http3ConnectionErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (15)
Internal\Http3\Http3Connection.cs (3)
244connection.OnStreamConnectionError(new Http3ConnectionErrorException(CoreStrings.Http3ErrorControlStreamClosed, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream)); 322OnStreamConnectionError(new Http3ConnectionErrorException(CoreStrings.ConnectionTimedBecauseResponseMininumDataRateNotSatisfied, Http3ErrorCode.InternalError, ConnectionEndReason.MinResponseDataRate)); 727var connectionError = new Http3ConnectionErrorException(CoreStrings.Http3ControlStreamErrorInitializingOutbound, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream);
Internal\Http3\Http3ControlStream.cs (7)
205throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("control"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError); 214throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("encoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError); 223throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("decoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError); 305throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ErrorUnsupportedFrameOnControlStream(_incomingFrame.FormattedType), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 324throw new Http3ConnectionErrorException(CoreStrings.Http3ErrorControlStreamMultipleSettingsFrames, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 370throw new Http3ConnectionErrorException(message, Http3ErrorCode.SettingsError, ConnectionEndReason.InvalidSettings); 434throw new Http3ConnectionErrorException(message, Http3ErrorCode.MissingSettings, ConnectionEndReason.InvalidSettings);
Internal\Http3\Http3Stream.cs (5)
762Http3FrameType.MaxPushId => throw new Http3ConnectionErrorException( 765Http3FrameType.PushPromise => throw new Http3ConnectionErrorException( 784throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3StreamErrorFrameReceivedAfterTrailers(Http3Formatting.ToFormattedType(Http3FrameType.Headers)), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 883throw new Http3ConnectionErrorException(CoreStrings.Http3StreamErrorDataReceivedBeforeHeaders, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 891throw new Http3ConnectionErrorException(message, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
9 references to Http3ConnectionErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http3\Http3Connection.cs (4)
487catch (Http3ConnectionErrorException ex) 727var connectionError = new Http3ConnectionErrorException(CoreStrings.Http3ControlStreamErrorInitializingOutbound, Http3ErrorCode.ClosedCriticalStream, ConnectionEndReason.ClosedCriticalStream); 856void IHttp3StreamLifetimeHandler.OnStreamConnectionError(Http3ConnectionErrorException ex) 861private void OnStreamConnectionError(Http3ConnectionErrorException ex)
Internal\Http3\Http3ControlStream.cs (1)
236catch (Http3ConnectionErrorException ex)
Internal\Http3\Http3Stream.cs (1)
649catch (Http3ConnectionErrorException ex)
Internal\Http3\IHttp3StreamLifetimeHandler.cs (1)
12void OnStreamConnectionError(Http3ConnectionErrorException ex);
Internal\Infrastructure\KestrelTrace.Http3.cs (2)
13public void Http3ConnectionError(string connectionId, Http3ConnectionErrorException ex) 75public static partial void Http3ConnectionError(ILogger logger, string connectionId, Http3ConnectionErrorException ex);