MessageFormatterEnumerableTracker.CreateEnumerableProxy<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.
Utilisé par le consommateur pour construire un proxy qui implémente IAsyncEnumerable<T> et obtient toutes ses valeurs à partir d’un générateur distant.
public System.Collections.Generic.IAsyncEnumerable<T> CreateEnumerableProxy<T> (object? handle, System.Collections.Generic.IReadOnlyList<T>? prefetchedItems);
member this.CreateEnumerableProxy : obj * System.Collections.Generic.IReadOnlyList<'T> -> System.Collections.Generic.IAsyncEnumerable<'T>
Public Function CreateEnumerableProxy(Of T) (handle As Object, prefetchedItems As IReadOnlyList(Of T)) As IAsyncEnumerable(Of T)
Paramètres de type
- T
Type de valeur produit par l’énumérable.
Paramètres
- handle
- Object
Handle spécifié par le générateur utilisé pour obtenir plus de valeurs ou supprimer l’énumérateur. Peut être null
pour indiquer qu’il n’y aura plus de valeurs.
- prefetchedItems
- IReadOnlyList<T>
Liste des éléments inclus dans le handle énumérable.
Retours
Énumérateur.