Condividi tramite


DataflowBlock.ReceiveAllAsync<TOutput> Metodo

Definizione

Crea un oggetto IAsyncEnumerable<T> che consente la ricezione di tutti i dati dall'origine.

public static System.Collections.Generic.IAsyncEnumerable<TOutput> ReceiveAllAsync<TOutput> (this System.Threading.Tasks.Dataflow.IReceivableSourceBlock<TOutput> source, System.Threading.CancellationToken cancellationToken = default);
static member ReceiveAllAsync : System.Threading.Tasks.Dataflow.IReceivableSourceBlock<'Output> * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Output>
<Extension()>
Public Function ReceiveAllAsync(Of TOutput) (source As IReceivableSourceBlock(Of TOutput), Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TOutput)

Parametri di tipo

TOutput

Specifica il tipo di dati contenuti nell'origine.

Parametri

source
IReceivableSourceBlock<TOutput>

Origine da cui ricevere in modo asincrono.

cancellationToken
CancellationToken

Oggetto CancellationToken che può essere utilizzato per annullare l'operazione di ricezione.

Restituisce

IAsyncEnumerable<TOutput>

Elemento asincrono creato enumerabile.

Eccezioni

L'elemento source è null.

Il token di annullamento è stato annullato. Questa eccezione viene archiviata nell'attività restituita.

Si applica a