27 references to Bidirectional
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
Internal\QuicConnectionContext.cs (2)
219
quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
, cancellationToken);
228
quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
, cancellationToken);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (19)
QuicConnectionContextTests.cs (10)
102
await using var clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
);
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 (7)
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
);
262
await using var clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
);
495
await using var clientStream = await quicConnection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
);
545
await using var clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
);
572
await using var clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
);
QuicTestHelpers.cs (1)
146
var clientStream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
);
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
257
quicStream = await conn.OpenOutboundStreamAsync(QuicStreamType.
Bidirectional
, cancellationToken).ConfigureAwait(false);
System.Net.Quic (5)
System\Net\Quic\QuicConnection.cs (2)
505
if (streamType == QuicStreamType.
Bidirectional
)
701
QuicStreamType type = data.Flags.HasFlag(QUIC_STREAM_OPEN_FLAGS.UNIDIRECTIONAL) ? QuicStreamType.Unidirectional : QuicStreamType.
Bidirectional
;
System\Net\Quic\QuicStream.cs (3)
27
/// or <see cref="QuicStreamType.
Bidirectional
">bidirectional</see> which allows both side to write.
192
_canRead = type == QuicStreamType.
Bidirectional
;
238
_type = flags.HasFlag(QUIC_STREAM_OPEN_FLAGS.UNIDIRECTIONAL) ? QuicStreamType.Unidirectional : QuicStreamType.
Bidirectional
;