Prepends 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[]> Prepend(
string key,
byte[] value
)
IOperationResult<byte[]> Prepend(
string key,
byte[] value
)
Function Prepend (
key As String,
value As Byte()
) As IOperationResult(Of Byte())
Function Prepend (
key As String,
value As Byte()
) As IOperationResult(Of Byte())
IOperationResult<array<unsigned char>^>^ Prepend(
String^ key,
array<unsigned char>^ value
)
IOperationResult<array<unsigned char>^>^ Prepend(
String^ key,
array<unsigned char>^ value
)
abstract Prepend :
key : string *
value : byte[] -> IOperationResult<byte[]>
abstract Prepend :
key : string *
value : byte[] -> IOperationResult<byte[]>
Parameters
- key
- Type: System.String
The key to Prepend too.
- value
- Type:System.Byte[]
The value to prepend to the key.
Return Value
Type:
IOperationResult<Byte[]>An
IOperationResult with the status of the operation.
See Also