7 instantiations of Http2StreamErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\Http2\Http2Connection.cs (5)
1182throw new Http2StreamErrorException(_incomingFrame.StreamId, CoreStrings.Http2StreamAborted, Http2ErrorCode.STREAM_CLOSED); 1187throw new Http2StreamErrorException(_incomingFrame.StreamId, CoreStrings.Http2ErrorWindowUpdateSizeInvalid, Http2ErrorCode.FLOW_CONTROL_ERROR); 1323throw new Http2StreamErrorException(_currentHeadersStream.StreamId, CoreStrings.HttpErrorMissingMandatoryPseudoHeaderFields, Http2ErrorCode.PROTOCOL_ERROR); 1336throw new Http2StreamErrorException(_currentHeadersStream.StreamId, CoreStrings.Http2ErrorMaxStreams, Http2ErrorCode.REFUSED_STREAM); 1361throw new Http2StreamErrorException(_currentHeadersStream.StreamId, CoreStrings.Http2TellClientToCalmDown, Http2ErrorCode.ENHANCE_YOUR_CALM);
Internal\Http2\Http2Stream.cs (2)
497throw new Http2StreamErrorException(StreamId, CoreStrings.Http2StreamErrorMoreDataThanLength, Http2ErrorCode.PROTOCOL_ERROR); 542throw new Http2StreamErrorException(StreamId, CoreStrings.Http2StreamErrorLessDataThanLength, Http2ErrorCode.PROTOCOL_ERROR);
7 references to Http2StreamErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (7)
_generated\0\LoggerMessage.g.cs (1)
846public static partial void Http2StreamError(global::Microsoft.Extensions.Logging.ILogger logger, string connectionId, global::Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http2.Http2StreamErrorException ex)
Internal\Http2\Http2Connection.cs (4)
348catch (Http2StreamErrorException ex) 1261catch (Http2StreamErrorException) 1285catch (Http2StreamErrorException) 1364catch (Http2StreamErrorException)
Internal\Infrastructure\KestrelTrace.Http2.cs (2)
17public void Http2StreamError(string connectionId, Http2StreamErrorException ex) 109public static partial void Http2StreamError(ILogger logger, string connectionId, Http2StreamErrorException ex);