9 references to IsCompleted
System.Net.Quic (9)
System\Net\Quic\QuicStream.cs (9)
287
if (_receiveTcs.
IsCompleted
)
377
if (_sendTcs.
IsCompleted
&& cancellationToken.IsCancellationRequested)
461
if (abortDirection.HasFlag(QuicAbortDirection.Read) && !_receiveTcs.
IsCompleted
)
465
if (abortDirection.HasFlag(QuicAbortDirection.Write) && !_sendTcs.
IsCompleted
)
516
if (_sendTcs.
IsCompleted
)
734
if (!_receiveTcs.
IsCompleted
)
738
if (!_sendTcs.
IsCompleted
)
767
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_RECEIVE) && !_receiveTcs.
IsCompleted
)
771
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_SEND) && !_sendTcs.
IsCompleted
)