IMobileServiceTable.ReadAsync Method (String, IDictionary<String, String>)

 

Excutes a query against the table.

Namespace:   Microsoft.WindowsAzure.MobileServices
Assembly:  Microsoft.WindowsAzure.Mobile (in Microsoft.WindowsAzure.Mobile.dll)

Syntax

Task<JToken> ReadAsync(
    string query,
    IDictionary<string, string> parameters
)
Task<JToken^>^ ReadAsync(
    String^ query,
    IDictionary<String^, String^>^ parameters
)
abstract ReadAsync : 
        query:string *
        parameters:IDictionary<string, string> -> Task<JToken>
Function ReadAsync (
    query As String,
    parameters As IDictionary(Of String, String)
) As Task(Of JToken)

Parameters

Return Value

Type: System.Threading.Tasks.Task<JToken>

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

See Also

ReadAsync Overload
IMobileServiceTable Interface
Microsoft.WindowsAzure.MobileServices Namespace

Return to top