コード例 #1
0
        public virtual Response Delete(string partitionKey, string rowKey, string eTag = "*", CancellationToken cancellationToken = default)
        {
            Argument.AssertNotNull(partitionKey, nameof(partitionKey));
            Argument.AssertNotNull(rowKey, nameof(rowKey));

            return(_tableOperations.DeleteEntity(_table,
                                                 partitionKey,
                                                 rowKey,
                                                 ifMatch: eTag,
                                                 queryOptions: new QueryOptions()
            {
                Format = _format
            },
                                                 cancellationToken: cancellationToken));
        }