9 references to IsCompleted
System.Net.Quic (9)
System\Net\Quic\QuicStream.cs (9)
317
if (_receiveTcs.
IsCompleted
)
407
if (_sendTcs.
IsCompleted
&& cancellationToken.IsCancellationRequested)
491
if (abortDirection.HasFlag(QuicAbortDirection.Read) && !_receiveTcs.
IsCompleted
)
495
if (abortDirection.HasFlag(QuicAbortDirection.Write) && !_sendTcs.
IsCompleted
)
546
if (_sendTcs.
IsCompleted
)
767
if (!_receiveTcs.
IsCompleted
)
771
if (!_sendTcs.
IsCompleted
)
800
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_RECEIVE) && !_receiveTcs.
IsCompleted
)
804
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_SEND) && !_sendTcs.
IsCompleted
)