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);
abstract member DeleteAsync : 'T -> System.Threading.Tasks.Task
Public Function DeleteAsync (instance As T) As Task

Parameters

instance
T

The instance to delete.

Returns

A task that will complete when the delete has finished.

Applies to

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);
abstract member DeleteAsync : 'T * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task
Public Function DeleteAsync (instance As T, parameters As IDictionary(Of String, String)) As Task

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.

Applies to