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<byte[]>> AppendAsync(
string key,
byte[] value
)
public Task<IOperationResult<byte[]>> AppendAsync(
string key,
byte[] value
)
Public Function AppendAsync (
key As String,
value As Byte()
) As Task(Of IOperationResult(Of Byte()))
Public Function AppendAsync (
key As String,
value As Byte()
) As Task(Of IOperationResult(Of Byte()))
public:
virtual Task<IOperationResult<array<unsigned char>^>^>^ AppendAsync(
String^ key,
array<unsigned char>^ value
) sealed
public:
virtual Task<IOperationResult<array<unsigned char>^>^>^ AppendAsync(
String^ key,
array<unsigned char>^ value
) sealed
abstract AppendAsync :
key : string *
value : byte[] -> Task<IOperationResult<byte[]>>
override AppendAsync :
key : string *
value : byte[] -> Task<IOperationResult<byte[]>>
abstract AppendAsync :
key : string *
value : byte[] -> Task<IOperationResult<byte[]>>
override AppendAsync :
key : string *
value : byte[] -> Task<IOperationResult<byte[]>>
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