9 references to IsCompleted
System.Net.Quic (9)
System\Net\Quic\QuicStream.cs (9)
317
if (_receiveTcs.
IsCompleted
)
408
if (_sendTcs.
IsCompleted
&& cancellationToken.IsCancellationRequested)
499
if (abortDirection.HasFlag(QuicAbortDirection.Read) && !_receiveTcs.
IsCompleted
)
503
if (abortDirection.HasFlag(QuicAbortDirection.Write) && !_sendTcs.
IsCompleted
)
554
if (_sendTcs.
IsCompleted
)
775
if (!_receiveTcs.
IsCompleted
)
779
if (!_sendTcs.
IsCompleted
)
808
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_RECEIVE) && !_receiveTcs.
IsCompleted
)
812
if (flags.HasFlag(QUIC_STREAM_SHUTDOWN_FLAGS.ABORT_SEND) && !_sendTcs.
IsCompleted
)