Appends a value to a given key as an asynchronous operation.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntaxpublic Task<IOperationResult<string>> AppendAsync(
string key,
string value
)
public Task<IOperationResult<string>> AppendAsync(
string key,
string value
)
Public Function AppendAsync (
key As String,
value As String
) As Task(Of IOperationResult(Of String))
Public Function AppendAsync (
key As String,
value As String
) As Task(Of IOperationResult(Of String))
public:
virtual Task<IOperationResult<String^>^>^ AppendAsync(
String^ key,
String^ value
) sealed
public:
virtual Task<IOperationResult<String^>^>^ AppendAsync(
String^ key,
String^ value
) sealed
abstract AppendAsync :
key : string *
value : string -> Task<IOperationResult<string>>
override AppendAsync :
key : string *
value : string -> Task<IOperationResult<string>>
abstract AppendAsync :
key : string *
value : string -> Task<IOperationResult<string>>
override AppendAsync :
key : string *
value : string -> Task<IOperationResult<string>>
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