Appends a value to a give key.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic IOperationResult<byte[]> Append(
string key,
byte[] value
)
public IOperationResult<byte[]> Append(
string key,
byte[] value
)
Public Function Append (
key As String,
value As Byte()
) As IOperationResult(Of Byte())
Public Function Append (
key As String,
value As Byte()
) As IOperationResult(Of Byte())
public:
virtual IOperationResult<array<unsigned char>^>^ Append(
String^ key,
array<unsigned char>^ value
) sealed
public:
virtual IOperationResult<array<unsigned char>^>^ Append(
String^ key,
array<unsigned char>^ value
) sealed
abstract Append :
key : string *
value : byte[] -> IOperationResult<byte[]>
override Append :
key : string *
value : byte[] -> IOperationResult<byte[]>
abstract Append :
key : string *
value : byte[] -> IOperationResult<byte[]>
override 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.
Implements
IBucket.Append(String,Byte[])
See Also