IMobileServiceTable<T>.LookupAsync Méthode

Définition

Surcharges

LookupAsync(Object)

Recherche une instance dans une table par ID.

LookupAsync(Object, IDictionary<String,String>)

Recherche une instance dans une table par ID.

LookupAsync(Object)

Recherche une instance dans une table par ID.

public System.Threading.Tasks.Task<T> LookupAsync (object id);
abstract member LookupAsync : obj -> System.Threading.Tasks.Task<'T>
Public Function LookupAsync (id As Object) As Task(Of T)

Paramètres

id
Object

ID de l'instance.

Retours

Task<T>

Instance souhaitée.

S’applique à

LookupAsync(Object, IDictionary<String,String>)

Recherche une instance dans une table par ID.

public System.Threading.Tasks.Task<T> LookupAsync (object id, System.Collections.Generic.IDictionary<string,string> parameters);
abstract member LookupAsync : obj * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<'T>
Public Function LookupAsync (id As Object, parameters As IDictionary(Of String, String)) As Task(Of T)

Paramètres

id
Object

ID de l'instance.

parameters
IDictionary<String,String>

Dictionnaires de paramètres et valeurs définis par l'utilisateur à inclure dans la chaîne de requête de l'URI de demande.

Retours

Task<T>

Instance souhaitée.

S’applique à