1 write to _writeChannel
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
156
_writeChannel
= Channel.CreateUnbounded<WriteQueueEntry>(s_channelOptions);
4 references to _writeChannel
System.Net.Http (4)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (4)
1206
if (!
_writeChannel
.Writer.TryWrite(writeEntry))
1227
while (await
_writeChannel
.Reader.WaitToReadAsync().ConfigureAwait(false))
1229
while (
_writeChannel
.Reader.TryRead(out WriteQueueEntry? writeEntry))
1937
bool completed =
_writeChannel
.Writer.TryComplete();