Share via


TableController<TData>.DeleteAsync Method (String)

 

Provides a helper method for deleting an entity from a backend store. It deals with any exceptions thrown by the IDomainManager<TData> and maps them into appropriate HTTP responses.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)

Syntax

[DebuggerStepThroughAttribute]
protected virtual Task DeleteAsync(
    string id
)
protected:
[DebuggerStepThroughAttribute]
virtual Task^ DeleteAsync(
    String^ id
)
[<DebuggerStepThroughAttribute>]
abstract DeleteAsync : 
        id:string -> Task
[<DebuggerStepThroughAttribute>]
override DeleteAsync : 
        id:string -> Task
<DebuggerStepThroughAttribute>
Protected Overridable Function DeleteAsync (
    id As String
) As Task

Return Value

Type: System.Threading.Tasks.Task

A Task<TResult> representing the delete operation executed by the the IDomainManager<TData>.

See Also

TableController<TData> Class
Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top