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