AzureTableDataManager<T>.DeleteTableEntriesAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.