IMobileServiceTable<T>.UpdateAsync
Method
Definition
Overloads
| UpdateAsync(T) |
Updates an instance in the table. |
| UpdateAsync(T, IDictionary<String,String>) |
Updates an instance in the table. |
UpdateAsync(T)
Updates an instance in the table.
public System.Threading.Tasks.Task UpdateAsync (T instance);
Parameters
- instance
- T
The instance to update.
Returns
A task that will complete when the update has finished.
UpdateAsync(T, IDictionary<String,String>)
Updates an instance in the table.
public System.Threading.Tasks.Task UpdateAsync (T instance, System.Collections.Generic.IDictionary<string,string> parameters);
Parameters
- instance
- T
The instance to update.
- parameters
- IDictionary<String,String>
A dictionary of user-defined parameters and values to include in the request URI query string.
Returns
A task that will complete when the update has finished.