IMobileServiceSyncTable<T>.ReadAsync 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.
Surcharges
ReadAsync() |
Retourne des instances d’une table. |
ReadAsync<U>(IMobileServiceTableQuery<U>) |
Retourne des instances d’une table basée sur une requête. |
ReadAsync()
Retourne des instances d’une table.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>> ReadAsync ();
abstract member ReadAsync : unit -> System.Threading.Tasks.Task<seq<'T>>
Public Function ReadAsync () As Task(Of IEnumerable(Of T))
Retours
Instances de la table.
Remarques
Cet appel ne gère pas la pagination, etc., pour vous.
S’applique à
ReadAsync<U>(IMobileServiceTableQuery<U>)
Retourne des instances d’une table basée sur une requête.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<U>> ReadAsync<U> (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U> query);
abstract member ReadAsync : Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'U> -> System.Threading.Tasks.Task<seq<'U>>
Public Function ReadAsync(Of U) (query As IMobileServiceTableQuery(Of U)) As Task(Of IEnumerable(Of U))
Paramètres de type
- U
Type de l'instance retournée par la requête.
Paramètres
- query
- IMobileServiceTableQuery<U>
Requête à exécuter.
Retours
Instances de la table.
S’applique à
Azure SDK for .NET