RiakClientPut Method (RiakObject, RiakPutOptions) |
Namespace:
RiakClient
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax public RiakResult<RiakObject> Put(
RiakObject value,
RiakPutOptions options = null
)
abstract Put :
value : RiakObject *
?options : RiakPutOptions
(* Defaults:
let _options = defaultArg options null
*)
-> RiakResult<RiakObject>
override Put :
value : RiakObject *
?options : RiakPutOptions
(* Defaults:
let _options = defaultArg options null
*)
-> RiakResult<RiakObject>
Parameters
- value
- Type: RiakClient.ModelsRiakObject
The RiakObject to save. - options (Optional)
- Type: RiakClient.ModelsRiakPutOptions
The RiakPutOptions responsible for configuring the semantics of this single put request.
These options will override any previously defined bucket configuration properties.
Return Value
Type:
RiakResultRiakObjectA
RiakResult detailing the success or failure of the operation.
Implements
IRiakBatchClientPut(RiakObject, RiakPutOptions)See Also