CouchbaseBucket.PrependAsync Method (String, String)Couchbase .NET SDK 2.3.3
Prepends 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>> PrependAsync(
	string key,
	string value
)

Parameters

key
Type: System.String
The key to Prepend to.
value
Type: System.String
The value to prepend to the key.

Return Value

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

Implements

IBucket.PrependAsync(String, String)
See Also