Edit

Share via


AzureTableDataManager<T>.CreateTableEntryAsync(T) Method

Definition

Create a new data entry in the Azure table (insert new, not update existing). Fails if the data already exists.

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

Parameters

data
T

Data to be inserted into the table.

Returns

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

Applies to