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);
abstract member LookupAsync : obj -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function LookupAsync (id As Object) As Task(Of JToken)

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.

Applies to

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);
abstract member LookupAsync : obj * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function LookupAsync (id As Object, parameters As IDictionary(Of String, String)) As Task(Of JToken)

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.

Applies to