CouchbaseBucket.AppendAsync Method (String, String)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<string>> AppendAsync(
	string key,
	string value
)

Parameters

key
Type: System.String
The key to append to.
value
Type: System.String
The value to append to the key.

Return Value

Type: Task<IOperationResult<String>>
The Task<TResult> object representing the asynchronous operation.

Implements

IBucket.AppendAsync(String, String)
See Also