AzureTableDataManager<T>.DeleteTableEntriesAsync Method
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
- collection
- IReadOnlyCollection<Tuple<T,String>>
Data entries and their corresponding etags to be deleted from the table.
Completion promise for this storage operation.