PagedEnumerableExtensions.ToListAsync<T> Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un List<T> à partir d’un IPagedEnumerable<T>.
public static System.Threading.Tasks.Task<System.Collections.Generic.List<T>> ToListAsync<T> (this Microsoft.Azure.Batch.IPagedEnumerable<T> source, System.Threading.CancellationToken cancellationToken = default);
static member ToListAsync : Microsoft.Azure.Batch.IPagedEnumerable<'T> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<'T>>
<Extension()>
Public Function ToListAsync(Of T) (source As IPagedEnumerable(Of T), Optional cancellationToken As CancellationToken = Nothing) As Task(Of List(Of T))
Paramètres de type
- T
Paramètres
- source
- IPagedEnumerable<T>
IPagedEnumerable<T> à partir duquel créer une liste.
- cancellationToken
- CancellationToken
CancellationToken pour contrôler la durée de vie de l’opération asynchrone.
Retours
Task<TResult> qui représente l'opération asynchrone. Le résultat de la tâche est un List<T> contenant tous les éléments de la séquence source.
S’applique à
Azure SDK for .NET