Share via


MobileServiceLocalStore.LookupAsync(String, String) Method

Definition

Reads a single item from local table with specified id.

public abstract System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JObject> LookupAsync (string tableName, string id);
abstract member LookupAsync : string * string -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JObject>
Public MustOverride Function LookupAsync (tableName As String, id As String) As Task(Of JObject)

Parameters

tableName
String

Name of the local table.

id
String

Id for the object to be read.

Returns

Task<Newtonsoft.Json.Linq.JObject>

A task that returns the item read from local table.

Implements

Applies to