Click or drag to resize
IRiakAsyncClientSetBucketProperties Method
Sets the RiakBucketProperties properties of a bucket.

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
Task<RiakResult> SetBucketProperties(
	string bucket,
	RiakBucketProperties properties
)

Parameters

bucket
Type: SystemString
The name of the bucket to set the properties on.
properties
Type: RiakClient.ModelsRiakBucketProperties
The properties to set. Note that only those properties explicitly set in the RiakBucketProperties will be set on the bucket. Those not set in the object will retain their values on Riak's side.

Return Value

Type: TaskRiakResult
A TaskTResult, that will contain a RiakResult detailing the success or failure of the operation.
See Also