7 references to AcceptInboundStreamAsync
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionContext.cs (1)
97
var stream = await _connection.
AcceptInboundStreamAsync
(cancellationToken);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (3)
QuicConnectionContextTests.cs (1)
251
var acceptTask = quicConnection.
AcceptInboundStreamAsync
();
QuicStreamContextTests.cs (2)
415
await using var clientStream = await quicConnection.
AcceptInboundStreamAsync
();
456
await using var clientStream = await quicConnection.
AcceptInboundStreamAsync
();
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
529
streamTask = _connection!.
AcceptInboundStreamAsync
(CancellationToken.None);
System.Net.Quic (2)
System\Net\Quic\QuicConnection.cs (2)
39
/// or accept an inbound stream: <see cref="QuicConnection.
AcceptInboundStreamAsync
(CancellationToken)" />.
166
/// Used by <see cref="
AcceptInboundStreamAsync
(CancellationToken)" /> to throw in case no stream can be opened from the peer.