9 references to IsCompleted
System.Net.Quic (9)
System\Net\Quic\QuicStream.cs (9)
317
if (_receiveTcs.
IsCompleted
)
407
if (_sendTcs.
IsCompleted
&& cancellationToken.IsCancellationRequested)
498
if (abortDirection.HasFlag(QuicAbortDirection.Read) && !_receiveTcs.
IsCompleted
)
502
if (abortDirection.HasFlag(QuicAbortDirection.Write) && !_sendTcs.
IsCompleted
)
553
if (_sendTcs.
IsCompleted
)
774
if (!_receiveTcs.
IsCompleted
)
778
if (!_sendTcs.
IsCompleted
)
807
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_RECEIVE) && !_receiveTcs.
IsCompleted
)
811
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_SEND) && !_sendTcs.
IsCompleted
)