Appends a value to a give key.
Namespace: Couchbase.CoreAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
SyntaxIOperationResult<byte[]> Append(
string key,
byte[] value
)
IOperationResult<byte[]> Append(
string key,
byte[] value
)
Function Append (
key As String,
value As Byte()
) As IOperationResult(Of Byte())
Function Append (
key As String,
value As Byte()
) As IOperationResult(Of Byte())
IOperationResult<array<unsigned char>^>^ Append(
String^ key,
array<unsigned char>^ value
)
IOperationResult<array<unsigned char>^>^ Append(
String^ key,
array<unsigned char>^ value
)
abstract Append :
key : string *
value : byte[] -> IOperationResult<byte[]>
abstract Append :
key : string *
value : byte[] -> IOperationResult<byte[]>
Parameters
- key
- Type: System.String
The key to append too.
- value
- Type:System.Byte[]
The value to append to the key.
Return Value
Type:
IOperationResult<Byte[]>An
IOperationResult with the status of the operation.
See Also