Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic IOperationResult Unlock(
string key,
ulong cas
)
public IOperationResult Unlock(
string key,
ulong cas
)
Public Function Unlock (
key As String,
cas As ULong
) As IOperationResult
Public Function Unlock (
key As String,
cas As ULong
) As IOperationResult
public:
virtual IOperationResult^ Unlock(
String^ key,
unsigned long long cas
) sealed
public:
virtual IOperationResult^ Unlock(
String^ key,
unsigned long long cas
) sealed
abstract Unlock :
key : string *
cas : uint64 -> IOperationResult
override Unlock :
key : string *
cas : uint64 -> IOperationResult
abstract Unlock :
key : string *
cas : uint64 -> IOperationResult
override Unlock :
key : string *
cas : uint64 -> IOperationResult
Parameters
- key
- Type: System.String
The key of the document to unlock.
- cas
- Type: System.UInt64
The 'check and set' value to use as a comparison
Return Value
Type:
IOperationResultAn
IOperationResult with the status.
Implements
IBucket.Unlock(String, UInt64)
See Also