IMobileServiceTable<T>.DeleteAsync
Method
Definition
Overloads
| DeleteAsync(T) |
Delete an instance from the table. |
| DeleteAsync(T, IDictionary<String,String>) |
Delete an instance from the table. |
DeleteAsync(T)
Delete an instance from the table.
public System.Threading.Tasks.Task DeleteAsync (T instance);
Parameters
- instance
- T
The instance to delete.
Returns
A task that will complete when the delete has finished.
DeleteAsync(T, IDictionary<String,String>)
Delete an instance from the table.
public System.Threading.Tasks.Task DeleteAsync (T instance, System.Collections.Generic.IDictionary<string,string> parameters);
Parameters
- instance
- T
The instance to delete.
- 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 delete has finished.