23 references to StreamId
Microsoft.AspNetCore.Server.Kestrel.Core (23)
Internal\Http2\FlowControl\StreamInputFlowControl.cs (1)
26
private int StreamId => _stream.
StreamId
;
Internal\Http2\Http2Connection.cs (11)
431
Log.HPackDecodingError(ConnectionId, _currentHeadersStream.
StreamId
, ex);
744
throw new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorStreamHalfClosedRemote(_incomingFrame.Type, stream.
StreamId
), Http2ErrorCode.STREAM_CLOSED, ConnectionEndReason.FrameAfterStreamClose);
766
return new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorStreamAborted(_incomingFrame.Type, stream.
StreamId
), Http2ErrorCode.STREAM_CLOSED, ConnectionEndReason.FrameAfterStreamClose);
782
return new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorHeadersInterleaved(_incomingFrame.Type, _incomingFrame.StreamId, _currentHeadersStream.
StreamId
), Http2ErrorCode.PROTOCOL_ERROR, ConnectionEndReason.UnexpectedFrame);
829
throw new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorStreamHalfClosedRemote(_incomingFrame.Type, stream.
StreamId
), Http2ErrorCode.STREAM_CLOSED, ConnectionEndReason.FrameAfterStreamClose);
1207
if (_incomingFrame.StreamId != _currentHeadersStream.
StreamId
)
1250
_highestOpenedStreamId = _currentHeadersStream.
StreamId
;
1323
throw new Http2StreamErrorException(_currentHeadersStream.
StreamId
, CoreStrings.HttpErrorMissingMandatoryPseudoHeaderFields, Http2ErrorCode.PROTOCOL_ERROR);
1336
throw new Http2StreamErrorException(_currentHeadersStream.
StreamId
, CoreStrings.Http2ErrorMaxStreams, Http2ErrorCode.REFUSED_STREAM);
1361
throw new Http2StreamErrorException(_currentHeadersStream.
StreamId
, CoreStrings.Http2TellClientToCalmDown, Http2ErrorCode.ENHANCE_YOUR_CALM);
1492
_streams.Remove(stream.
StreamId
);
Internal\Http2\Http2FrameWriter.cs (6)
247
WriteResponseHeaders(stream.
StreamId
, stream.StatusCode, Http2HeadersFrameFlags.NONE, (HttpResponseHeaders)stream.ResponseHeaders);
284
_log.Http2UnexpectedDataRemaining(stream.
StreamId
, _connectionId);
490
WriteResponseHeadersUnsynchronized(stream.
StreamId
, stream.StatusCode, Http2HeadersFrameFlags.END_STREAM, (HttpResponseHeaders)stream.ResponseHeaders);
575
var streamId = stream.
StreamId
;
796
WriteResponseHeadersUnsynchronized(stream.
StreamId
, stream.StatusCode, Http2HeadersFrameFlags.NONE, (HttpResponseHeaders)stream.ResponseHeaders);
803
WriteDataUnsynchronized(stream.
StreamId
, data, dataLength, endStream);
Internal\Http2\Http2OutputProducer.cs (2)
24
private int StreamId => _stream.
StreamId
;
99
internal (int, long, State, State, long) SchedulingState => (Stream.
StreamId
, _unconsumedBytes, _unobservedState, _currentState, _streamWindow);
Internal\Http2\Http2Stream.cs (3)
191
=> StringUtilities.ConcatAsHexSuffix(ConnectionId, ':', (uint)
StreamId
);
494
throw new Http2StreamErrorException(
StreamId
, CoreStrings.Http2StreamErrorMoreDataThanLength, Http2ErrorCode.PROTOCOL_ERROR);
539
throw new Http2StreamErrorException(
StreamId
, CoreStrings.Http2StreamErrorLessDataThanLength, Http2ErrorCode.PROTOCOL_ERROR);