Click or drag to resize
IRiakBatchClientDelete Method (String, String, String, RiakDeleteOptions)
Delete the object identified by key from a bucket.

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
RiakResult Delete(
	string bucketType,
	string bucket,
	string key,
	RiakDeleteOptions options = null
)

Parameters

bucketType
Type: SystemString
The name of the bucket type containing the bucket.
bucket
Type: SystemString
The name of the bucket containing the key.
key
Type: SystemString
The key of the object to be deleted.
options (Optional)
Type: RiakClient.ModelsRiakDeleteOptions
The RiakDeleteOptions responsible for configuring the semantics of this single delete request. These options will override any previously defined bucket configuration properties.

Return Value

Type: RiakResult
A RiakResult detailing the success or failure of the operation.
See Also