Prepends 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<string> Prepend(
string key,
string value
)
public IOperationResult<string> Prepend(
string key,
string value
)
Public Function Prepend (
key As String,
value As String
) As IOperationResult(Of String)
Public Function Prepend (
key As String,
value As String
) As IOperationResult(Of String)
public:
virtual IOperationResult<String^>^ Prepend(
String^ key,
String^ value
) sealed
public:
virtual IOperationResult<String^>^ Prepend(
String^ key,
String^ value
) sealed
abstract Prepend :
key : string *
value : string -> IOperationResult<string>
override Prepend :
key : string *
value : string -> IOperationResult<string>
abstract Prepend :
key : string *
value : string -> IOperationResult<string>
override 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.
Implements
IBucket.Prepend(String, String)
See Also