MemcachedBucket.Append Method (String,Byte[])Couchbase .NET SDK 2.0
Appends a value to a give key.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public IOperationResult<byte[]> Append(
	string key,
	byte[] value
)

Parameters

key
Type: System.String
The key to append too.
value
Type:System.Byte[]
The value to append to the key.

Return Value

Type: IOperationResult<Byte[]>
An IOperationResult with the status of the operation.

Implements

IBucket.Append(String,Byte[])
See Also