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<string> Append(
string key,
string value
)
public IOperationResult<string> Append(
string key,
string value
)
Public Function Append (
key As String,
value As String
) As IOperationResult(Of String)
Public Function Append (
key As String,
value As String
) As IOperationResult(Of String)
public:
virtual IOperationResult<String^>^ Append(
String^ key,
String^ value
) sealed
public:
virtual IOperationResult<String^>^ Append(
String^ key,
String^ value
) sealed
abstract Append :
key : string *
value : string -> IOperationResult<string>
override Append :
key : string *
value : string -> IOperationResult<string>
abstract Append :
key : string *
value : string -> IOperationResult<string>
override Append :
key : string *
value : string -> IOperationResult<string>
Parameters
- key
- Type: System.String
The key to append too.
- value
- Type: System.String
The value to append to the key.
Return Value
Type:
IOperationResult<String>An
IOperationResult with the status of the operation.
Implements
IBucket.Append(String, String)
See Also