Szerkesztés

Megosztás a következőn keresztül:


AzureTableDataManager<T>.UpdateTableEntryAsync(T, String) Method

Definition

Updates a data entry in the Azure table: updates an already existing data in the table, by using eTag. Fails if the data does not already exist or of eTag does not match.

public System.Threading.Tasks.Task<string> UpdateTableEntryAsync (T data, string dataEtag);
member this.UpdateTableEntryAsync : 'T * string -> System.Threading.Tasks.Task<string>
Public Function UpdateTableEntryAsync (data As T, dataEtag As String) As Task(Of String)

Parameters

data
T

Data to be updated into the table.

dataEtag
String

ETag to use.

Returns

Value promise with new Etag for this data entry after completing this storage operation.

Applies to