Share via


EntityDomainManager<TData>.UpdateAsync Method (String, Delta<TData>)

 

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

Syntax

[DebuggerStepThroughAttribute]
public virtual Task<TData> UpdateAsync(
    string id,
    Delta<TData> patch
)
public:
[DebuggerStepThroughAttribute]
virtual Task<TData>^ UpdateAsync(
    String^ id,
    Delta<TData>^ patch
)
[<DebuggerStepThroughAttribute>]
abstract UpdateAsync : 
        id:string *
        patch:Delta<'TData> -> Task<'TData>
[<DebuggerStepThroughAttribute>]
override UpdateAsync : 
        id:string *
        patch:Delta<'TData> -> Task<'TData>
<DebuggerStepThroughAttribute>
Public Overridable Function UpdateAsync (
    id As String,
    patch As Delta(Of TData)
) As Task(Of TData)

Return Value

Type: System.Threading.Tasks.Task<TData>

Implements

IDomainManager<TData>.UpdateAsync(String, Delta<TData>)

See Also

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

Return to top