33 references to QuicStream
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (5)
Internal\QuicConnectionContext.cs (2)
97
var
stream = await _connection.AcceptInboundStreamAsync(cancellationToken);
212
QuicStream
quicStream;
Internal\QuicStreamContext.cs (3)
23
private
QuicStream
? _stream;
79
public void Initialize(
QuicStream
stream)
483
var
stream = _stream;
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (26)
QuicConnectionContextTests.cs (12)
102
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
161
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional);
203
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
256
await using
var
clientStream = await acceptTask.DefaultTimeout();
328
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
371
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
416
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
465
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
605
await using
var
clientStream = await requestState.QuicConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
677
await using
var
clientStream1 = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
705
await using
var
clientStream2 = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
755
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
QuicConnectionListenerTests.cs (1)
129
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
QuicStreamContextTests.cs (12)
67
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
116
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
184
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
263
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
307
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional);
341
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional);
380
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional);
416
await using
var
clientStream = await quicConnection.AcceptInboundStreamAsync();
457
await using
var
clientStream = await quicConnection.AcceptInboundStreamAsync();
496
await using
var
clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
546
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
573
await using
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
QuicTestHelpers.cs (1)
146
var
clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional);
System.Net.Quic (2)
artifacts\obj\System.Net.Quic\Debug\net10.0\System.Net.Quic.notsupported.cs (2)
34
public System.Threading.Tasks.ValueTask<System.Net.Quic.
QuicStream
> AcceptInboundStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw new System.PlatformNotSupportedException(System.SR.SystemNetQuic_PlatformNotSupported); }
38
public System.Threading.Tasks.ValueTask<System.Net.Quic.
QuicStream
> OpenOutboundStreamAsync(System.Net.Quic.QuicStreamType type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw new System.PlatformNotSupportedException(System.SR.SystemNetQuic_PlatformNotSupported); }