IMobileServiceTable.LookupAsync Method

Definition

Overloads

LookupAsync(Object)

Executes a lookup against a table.

LookupAsync(Object, IDictionary<String,String>)

Executes a lookup against a table.

LookupAsync(Object)

Executes a lookup against a table.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> LookupAsync (object id);
Parameters
id
Object

The id of the instance to lookup.

Returns
Task<Newtonsoft.Json.Linq.JToken>

A task that will return with a result when the lookup finishes.

LookupAsync(Object, IDictionary<String,String>)

Executes a lookup against a table.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> LookupAsync (object id, System.Collections.Generic.IDictionary<string,string> parameters);
Parameters
id
Object

The id of the instance to lookup.

parameters
IDictionary<String,String>

A dictionary of user-defined parameters and values to include in the request URI query string.

Returns
Task<Newtonsoft.Json.Linq.JToken>

A task that will return with a result when the lookup finishes.