29 references to QuicStreamType
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);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (24)
QuicConnectionContextTests.cs (12)
69
() => clientConnection.OpenOutboundStreamAsync(
QuicStreamType
.Unidirectional).AsTask(),
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);
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 (10)
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);
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)
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); }
118
public System.Net.Quic.
QuicStreamType
Type { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetQuic_PlatformNotSupported); } }