Search:

Search all manuals
Search this manual
Manual
Membase Client Library: .NET (C#)
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
Membase Client Library: .NET (C#)
Chapters

Chapter 3. Membase Client Library: .NET — Retrieve Operations

Table 3.1.  .NET Client Library

MethodTitle
object.ExecuteGet(key, expiry) Get a get operation result and update the expiration time for a given key
object.ExecuteGet(key) Get a single value and return a get operation result
object.ExecuteGet(keyarray) Get multiple get operation result values
object.ExecuteGetWithLock(key [, getl-expiry ]) Get the value for a key, lock the key from changes
object.ExecuteGetWithLock-expiresat(key [, getl-expiry ]) Get the value for a key, lock the key from changes
object.ExecuteUnlock(key [, getl-expiry ]) Get the value for a key, lock the key from changes
object.Get(key, expiry) Get a value and update the expiration time for a given key
object.Get(key) Get a single value
object.Get(keyarray) Get multiple values
object.GetWithCas(key) Get a single value with Cas
object.GetWithLock(key [, getl-expiry ]) Get the value for a key, lock the key from changes
object.GetWithLock-expiresat(key [, getl-expiry ]) Get the value for a key, lock the key from changes
object.KeyExists(key) Check whether key exists without attempting to get value
object.Unlock(key [, getl-expiry ]) Get the value for a key, lock the key from changes

API Callobject.Get(key)
Asynchronousno
Description Get one or more key values
ReturnsObject ( Binary object )
Arguments 
string key Document ID used to identify the value
API Callobject.Get(keyarray)
Asynchronousno
Description Get one or more key values
ReturnsObject ( Binary object )
Arguments 
List <string> keyarray Array of keys used to reference one or more values.