AzureTableStoreRemoveAsync Method

Removes an entity from a Cosmos table. If the entity does not exist, logs at Trace level and returns without throwing (idempotent).

Definition

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.3.9666.0
C#
protected Task RemoveAsync(
	string tableName,
	string partitionKey,
	string rowKey,
	CancellationToken cancellationToken = default
)

Parameters

tableName  String
The table name
partitionKey  String
The entity's partition key
rowKey  String
The entity's row key
cancellationToken  CancellationToken  (Optional)
A CancellationToken controlling the request lifetime.

Return Value

Task

See Also