1 write to StreamId
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (1)
149
StreamId
= streamId;
19 references to StreamId
System.Net.Http (19)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (11)
1085
Debug.Assert(streamId == kvp.Value.
StreamId
);
1616
_httpStreams.Add(http2Stream.
StreamId
, http2Stream);
1650
if (NetEventSource.Log.IsEnabled()) s.thisRef.Trace(s.http2Stream.
StreamId
, $"Started writing. Total header bytes={s.headerBytes.Length}");
1659
FrameHeader.WriteTo(span, current.Length, FrameType.Headers, flags, s.http2Stream.
StreamId
);
1663
if (NetEventSource.Log.IsEnabled()) s.thisRef.Trace(s.http2Stream.
StreamId
, $"Wrote HEADERS frame. Length={current.Length}, flags={flags}");
1671
FrameHeader.WriteTo(span, current.Length, FrameType.Continuation, flags, s.http2Stream.
StreamId
);
1675
if (NetEventSource.Log.IsEnabled()) s.thisRef.Trace(s.http2Stream.
StreamId
, $"Wrote CONTINUATION frame. Length={current.Length}, flags={flags}");
1824
Debug.Assert(streamId == kvp.Value.
StreamId
);
2064
if (NetEventSource.Log.IsEnabled()) Trace(http2Stream.
StreamId
, "");
2068
if (!_httpStreams.Remove(http2Stream.
StreamId
))
2070
Debug.Fail($"Stream {http2Stream.
StreamId
} not found in dictionary during RemoveStream???");
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (6)
317
_connection.LogExceptions(_connection.SendEndStreamAsync(
StreamId
));
377
_connection.LogExceptions(_connection.SendRstStreamAsync(
StreamId
, Http2ProtocolErrorCode.Cancel));
1329
await _connection.SendStreamDataAsync(
StreamId
, current, flush, _requestBodyCancellationSource.Token).ConfigureAwait(false);
1371
_connection.LogExceptions(_connection.SendEndStreamAsync(
StreamId
));
1396
_connection.LogExceptions(_connection.SendRstStreamAsync(
StreamId
, Http2ProtocolErrorCode.Cancel));
1478
_connection.Trace(
StreamId
, message, memberName);
System\Net\Http\SocketsHttpHandler\Http2StreamWindowManager.cs (2)
81
Task sendWindowUpdateTask = connection.SendWindowUpdateAsync(stream.
StreamId
, windowUpdateIncrement);
130
Task sendWindowUpdateTask = connection.SendWindowUpdateAsync(stream.
StreamId
, windowUpdateIncrement);