Edit

Share via


AzureTableDataManager<T>.DeleteTableEntriesAsync Method

Definition

Deletes a set of already existing data entries 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 DeleteTableEntriesAsync (System.Collections.Generic.IReadOnlyCollection<Tuple<T,string>> collection);
member this.DeleteTableEntriesAsync : System.Collections.Generic.IReadOnlyCollection<'T * string> -> System.Threading.Tasks.Task
Public Function DeleteTableEntriesAsync (collection As IReadOnlyCollection(Of Tuple(Of T, String))) As Task

Parameters

collection
IReadOnlyCollection<Tuple<T,String>>

Data entries and their corresponding etags to be deleted from the table.

Returns

Completion promise for this storage operation.

Applies to