IMobileServiceLocalStore.LookupAsync(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads a single item from local table with specified id.
public 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 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.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET