17 instantiations of Http3ConnectionErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (17)
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 (9)
211throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("control"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError); 220throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("encoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError); 229throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamErrorMultipleInboundStreams("decoder"), Http3ErrorCode.StreamCreationError, ConnectionEndReason.StreamCreationError); 339throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ErrorUnsupportedFrameOnControlStream(incomingFrame.FormattedType), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 359throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamFrameTooLarge(http3RawFrame.FormattedType), Http3ErrorCode.FrameError, ConnectionEndReason.InvalidFrameLength); 371throw new Http3ConnectionErrorException(CoreStrings.Http3ErrorControlStreamMultipleSettingsFrames, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 416throw new Http3ConnectionErrorException(message, Http3ErrorCode.SettingsError, ConnectionEndReason.InvalidSettings); 499throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamFrameTooLarge(Http3Formatting.ToFormattedType(incomingFrame.Type)), Http3ErrorCode.FrameError, ConnectionEndReason.InvalidFrameLength); 508throw new Http3ConnectionErrorException(message, Http3ErrorCode.MissingSettings, ConnectionEndReason.InvalidSettings);
Internal\Http3\Http3Stream.cs (5)
771Http3FrameType.MaxPushId => throw new Http3ConnectionErrorException( 774Http3FrameType.PushPromise => throw new Http3ConnectionErrorException( 795throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3StreamErrorFrameReceivedAfterTrailers(Http3Formatting.ToFormattedType(Http3FrameType.Headers)), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 903throw new Http3ConnectionErrorException(CoreStrings.Http3StreamErrorDataReceivedBeforeHeaders, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame); 911throw new Http3ConnectionErrorException(message, Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
19 references to Http3ConnectionErrorException
InMemory.FunctionalTests (9)
Http3\Http3ConnectionTests.cs (6)
242await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>( 262await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>( 284await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>( 309await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>( 354await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>( 383await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>(
Http3\Http3StreamTests.cs (1)
2108await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>(
Http3\Http3TimeoutTests.cs (1)
410await Http3Api.WaitForConnectionErrorAsync<Http3ConnectionErrorException>(
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
321public void OnStreamConnectionError(Http3ConnectionErrorException ex)
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)
242catch (Http3ConnectionErrorException ex)
Internal\Http3\Http3Stream.cs (1)
657catch (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);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
321public void OnStreamConnectionError(Http3ConnectionErrorException ex)