AzureTableDataManager<T>.UpdateTableEntryAsync(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.
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.