Share via


IDomainManager<TData>.ReplaceAsync Method (String, TData)

 

Completely replaces an existing item.

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

Syntax

Task<TData> ReplaceAsync(
    string id,
    TData data
)
Task<TData>^ ReplaceAsync(
    String^ id,
    TData data
)
abstract ReplaceAsync : 
        id:string *
        data:'TData -> Task<'TData>
Function ReplaceAsync (
    id As String,
    data As TData
) As Task(Of TData)

Parameters

  • data
    Type: TData

    The replacement

Return Value

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

The replaced item

See Also

IDomainManager<TData> Interface
Microsoft.WindowsAzure.Mobile.Service.Tables Namespace

Return to top