Search:

Search all manuals
Search this manual
Manual
Couchbase Client Library: .NET (C#) 1.1
Community Wiki and Resources
Wiki: .NET Client Library
Download Client Library
.NET Client Library
SDK Forum
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
Couchbase Client Library: .NET (C#) 1.1
Child Sections
Chapters

Chapter 6. Retrieve Operations

Table of Contents

6.1. Get Methods

The retrieve operations get information from the Couchbase database. A summary of the available API calls is listed below.

Table 6.1. .NET Client Library Retrieve Methods

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