AzureTableDataManager<T>.DeleteTableEntryAsync(T, String) 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 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.