.Dataset().Row().Delete()

Task<TDelete> api
	.Dataset(...)
	.Row(...)
	.Delete()

Delete a given row from a data set.

Parameters

  • N/A

Returns

class TDelete {
	public string error; // Error message. Please note that this is only returned if there is an error
	public bool success; // Success indicator
}

This method returns a Task which resolves to a TDelete instance, containing a success property to indicate the status of the action and an error property if the request should fail, with a message explaining why it failed.

Example

The following shows an example call to delete a row which has an id of 13:

var api = new CloudTables.Api("sub-domain", ":apiKey");

var result = await api
	.Dataset(":id")
	.Row(13)
	.Delete();