CouchbaseBucket.AppendAsync Method (String,Byte[])Couchbase .NET SDK 2.3.3
Appends a value to a given key as an asynchronous operation.

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

Parameters

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

Return Value

Type: Task<IOperationResult<Byte[]>>
The Task<TResult> object representing the asynchronous operation.

Implements

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