Share via


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);
abstract member ReadAsync : string -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function ReadAsync (query As String) As Task(Of JToken)

Parameters

query
System.String

A query to execute.

Returns

System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>

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

Applies to

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);
abstract member ReadAsync : string * System.Collections.Generic.IDictionary<string, string> * bool -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function ReadAsync (query As String, parameters As IDictionary(Of String, String), wrapResult As Boolean) As Task(Of JToken)

Parameters

query
System.String

A query to execute.

parameters
System.Collections.Generic.IDictionary<System.String,System.String>

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

wrapResult
System.Boolean

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

Returns

System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>

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

Applies to