IMobileServiceTable<T>.LookupAsync 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.
Overloads
LookupAsync(Object) |
Lookup an instance from a table by its id. |
LookupAsync(Object, IDictionary<String,String>) |
Lookup an instance from a table by its id. |
LookupAsync(Object)
Lookup an instance from a table by its id.
public System.Threading.Tasks.Task<T> LookupAsync (object id);
abstract member LookupAsync : obj -> System.Threading.Tasks.Task<'T>
Public Function LookupAsync (id As Object) As Task(Of T)
Parameters
- id
- Object
The id of the instance.
Returns
The desired instance.
Applies to
LookupAsync(Object, IDictionary<String,String>)
Lookup an instance from a table by its id.
public System.Threading.Tasks.Task<T> LookupAsync (object id, System.Collections.Generic.IDictionary<string,string> parameters);
abstract member LookupAsync : obj * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<'T>
Public Function LookupAsync (id As Object, parameters As IDictionary(Of String, String)) As Task(Of T)
Parameters
- id
- Object
The id of the instance.
- parameters
- IDictionary<String,String>
A dictionary of user-defined parameters and values to include in the request URI query string.
Returns
The desired instance.
Applies to
Azure SDK for .NET