27 references to StreamId
InMemory.FunctionalTests (2)
Http2\Http2ConnectionTests.cs (1)
598await WaitForStreamAsync(stream.StreamId).DefaultTimeout();
Http2\Http2TestBase.cs (1)
537if (_httpTestBase._runningStreams.TryGetValue(stream.StreamId, out var tcs))
Microsoft.AspNetCore.Server.Kestrel.Core (23)
Internal\Http2\FlowControl\StreamInputFlowControl.cs (1)
26private int StreamId => _stream.StreamId;
Internal\Http2\Http2Connection.cs (11)
427Log.HPackDecodingError(ConnectionId, _currentHeadersStream.StreamId, ex); 740throw new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorStreamHalfClosedRemote(_incomingFrame.Type, stream.StreamId), Http2ErrorCode.STREAM_CLOSED, ConnectionEndReason.FrameAfterStreamClose); 762return new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorStreamAborted(_incomingFrame.Type, stream.StreamId), Http2ErrorCode.STREAM_CLOSED, ConnectionEndReason.FrameAfterStreamClose); 778return new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorHeadersInterleaved(_incomingFrame.Type, _incomingFrame.StreamId, _currentHeadersStream.StreamId), Http2ErrorCode.PROTOCOL_ERROR, ConnectionEndReason.UnexpectedFrame); 825throw new Http2ConnectionErrorException(CoreStrings.FormatHttp2ErrorStreamHalfClosedRemote(_incomingFrame.Type, stream.StreamId), Http2ErrorCode.STREAM_CLOSED, ConnectionEndReason.FrameAfterStreamClose); 1187if (_incomingFrame.StreamId != _currentHeadersStream.StreamId) 1225_highestOpenedStreamId = _currentHeadersStream.StreamId; 1289throw new Http2StreamErrorException(_currentHeadersStream.StreamId, CoreStrings.HttpErrorMissingMandatoryPseudoHeaderFields, Http2ErrorCode.PROTOCOL_ERROR); 1302throw new Http2StreamErrorException(_currentHeadersStream.StreamId, CoreStrings.Http2ErrorMaxStreams, Http2ErrorCode.REFUSED_STREAM); 1327throw new Http2StreamErrorException(_currentHeadersStream.StreamId, CoreStrings.Http2TellClientToCalmDown, Http2ErrorCode.ENHANCE_YOUR_CALM); 1458_streams.Remove(stream.StreamId);
Internal\Http2\Http2FrameWriter.cs (6)
247WriteResponseHeaders(stream.StreamId, stream.StatusCode, Http2HeadersFrameFlags.NONE, (HttpResponseHeaders)stream.ResponseHeaders); 284_log.Http2UnexpectedDataRemaining(stream.StreamId, _connectionId); 490WriteResponseHeadersUnsynchronized(stream.StreamId, stream.StatusCode, Http2HeadersFrameFlags.END_STREAM, (HttpResponseHeaders)stream.ResponseHeaders); 575var streamId = stream.StreamId; 796WriteResponseHeadersUnsynchronized(stream.StreamId, stream.StatusCode, Http2HeadersFrameFlags.NONE, (HttpResponseHeaders)stream.ResponseHeaders); 803WriteDataUnsynchronized(stream.StreamId, data, dataLength, endStream);
Internal\Http2\Http2OutputProducer.cs (2)
24private int StreamId => _stream.StreamId; 99internal (int, long, State, State, long) SchedulingState => (Stream.StreamId, _unconsumedBytes, _unobservedState, _currentState, _streamWindow);
Internal\Http2\Http2Stream.cs (3)
192=> StringUtilities.ConcatAsHexSuffix(ConnectionId, ':', (uint)StreamId); 495throw new Http2StreamErrorException(StreamId, CoreStrings.Http2StreamErrorMoreDataThanLength, Http2ErrorCode.PROTOCOL_ERROR); 540throw new Http2StreamErrorException(StreamId, CoreStrings.Http2StreamErrorLessDataThanLength, Http2ErrorCode.PROTOCOL_ERROR);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
PooledStreamStackTests.cs (2)
33Assert.Equal(1, ((Http2Stream)streams._array[0]).StreamId); 72Assert.Equal(2, ((Http2Stream)streams._array[0]).StreamId);