IMobileServiceTable.ReadAsync Method

Definition

Overloads

ReadAsync(String)

Executes a query against the table.

ReadAsync(String, IDictionary<String,String>, Boolean)

Executes a query against the table.

ReadAsync(String)

Executes a query against the table.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> ReadAsync (string query);
Parameters
query
String

A query to execute.

Returns
Task<Newtonsoft.Json.Linq.JToken>

A task that will return with results when the query finishes.

ReadAsync(String, IDictionary<String,String>, Boolean)

Executes a query against the table.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> ReadAsync (string query, System.Collections.Generic.IDictionary<string,string> parameters, bool wrapResult);
Parameters
query
String

A query to execute.

parameters
IDictionary<String,String>

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

wrapResult
Boolean

Specifies whether response should be formatted as JObject including extra response details e.g. link header

Returns
Task<Newtonsoft.Json.Linq.JToken>

A task that will return with results when the query finishes.