RiakClientDelete Method (String, String, RiakDeleteOptions) |
Delete the object identified by key from a bucket.
Namespace:
RiakClient
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax public RiakResult Delete(
string bucket,
string key,
RiakDeleteOptions options = null
)
abstract Delete :
bucket : string *
key : string *
?options : RiakDeleteOptions
(* Defaults:
let _options = defaultArg options null
*)
-> RiakResult
override Delete :
bucket : string *
key : string *
?options : RiakDeleteOptions
(* Defaults:
let _options = defaultArg options null
*)
-> RiakResult
Parameters
- 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:
RiakResultA
RiakResult detailing the success or failure of the operation.
Implements
IRiakBatchClientDelete(String, String, RiakDeleteOptions)See Also