7 references to OpenOutboundStreamAsync
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (3)
Internal\QuicConnectionContext.cs (3)
219
quicStream = await _connection.
OpenOutboundStreamAsync
(QuicStreamType.Bidirectional, cancellationToken);
223
quicStream = await _connection.
OpenOutboundStreamAsync
(QuicStreamType.Unidirectional, cancellationToken);
228
quicStream = await _connection.
OpenOutboundStreamAsync
(QuicStreamType.Bidirectional, cancellationToken);
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (2)
284
quicStream = await conn.
OpenOutboundStreamAsync
(QuicStreamType.Bidirectional, cancellationToken).ConfigureAwait(false);
488
_clientControl = await _connection!.
OpenOutboundStreamAsync
(QuicStreamType.Unidirectional).ConfigureAwait(false);
System.Net.Quic (2)
System\Net\Quic\QuicConnection.cs (2)
39
/// Each connection can then open outbound stream: <see cref="QuicConnection.
OpenOutboundStreamAsync
(QuicStreamType, CancellationToken)" />,
193
/// Optimization to avoid `Action` instantiation with every <see cref="
OpenOutboundStreamAsync
(QuicStreamType, CancellationToken)"/>.