Edit

Share via


AzureTableDataManager<T>.DeleteTableEntryAsync(T, String) Method

Definition

Deletes an already existing data in the table, by using eTag. Fails if the data does not already exist or if eTag does not match.

public System.Threading.Tasks.Task DeleteTableEntryAsync (T data, string eTag);
member this.DeleteTableEntryAsync : 'T * string -> System.Threading.Tasks.Task
Public Function DeleteTableEntryAsync (data As T, eTag As String) As Task

Parameters

data
T

Data entry to be deleted from the table.

eTag
String

ETag to use.

Returns

Completion promise for this storage operation.

Applies to