6 instantiations of Http2StreamErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http2\Http2Connection.cs (4)
1167
throw new
Http2StreamErrorException
(_incomingFrame.StreamId, CoreStrings.Http2ErrorWindowUpdateSizeInvalid, Http2ErrorCode.FLOW_CONTROL_ERROR);
1289
throw new
Http2StreamErrorException
(_currentHeadersStream.StreamId, CoreStrings.HttpErrorMissingMandatoryPseudoHeaderFields, Http2ErrorCode.PROTOCOL_ERROR);
1302
throw new
Http2StreamErrorException
(_currentHeadersStream.StreamId, CoreStrings.Http2ErrorMaxStreams, Http2ErrorCode.REFUSED_STREAM);
1327
throw new
Http2StreamErrorException
(_currentHeadersStream.StreamId, CoreStrings.Http2TellClientToCalmDown, Http2ErrorCode.ENHANCE_YOUR_CALM);
Internal\Http2\Http2Stream.cs (2)
495
throw new
Http2StreamErrorException
(StreamId, CoreStrings.Http2StreamErrorMoreDataThanLength, Http2ErrorCode.PROTOCOL_ERROR);
540
throw new
Http2StreamErrorException
(StreamId, CoreStrings.Http2StreamErrorLessDataThanLength, Http2ErrorCode.PROTOCOL_ERROR);
5 references to Http2StreamErrorException
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http2\Http2Connection.cs (3)
344
catch (
Http2StreamErrorException
ex)
1236
catch (
Http2StreamErrorException
)
1330
catch (
Http2StreamErrorException
)
Internal\Infrastructure\KestrelTrace.Http2.cs (2)
17
public void Http2StreamError(string connectionId,
Http2StreamErrorException
ex)
109
public static partial void Http2StreamError(ILogger logger, string connectionId,
Http2StreamErrorException
ex);