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