CouchbaseBucket.GetWithLock<T> Method (String, UInt32)Couchbase .NET SDK 2.0
Gets a document and locks it for a specified time period.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public IOperationResult<T> GetWithLock<T>(
	string key,
	uint expiration
)

Parameters

key
Type: System.String
The key of the document to retrieve.
expiration
Type: System.UInt32
The seconds until the document is unlocked. The default is 15 seconds and the maximum supported by the server is 30 seconds.
Type Parameters
T
The Type of the values to be returned.

Return Value

Type: IOperationResult<T>
An IOperationResult<T> with the value.

Implements

IBucket.GetWithLock<T>(String, UInt32)
Remarks
Expirations exceeding 30 seconds will be defaulted to 15 seconds.
Remarks
An expiration of 0 is treated as an infinite.
See Also