Search:

Search all manuals
Search this manual
Manual
Couchbase Client Library: .NET (C#) 1.2
Community Wiki and Resources
Wiki: .NET Client Library
Download Client Library
.NET Client Library
Couchbase Developer Guide 2.0
Couchbase Server Manual 2.0
SDK Forum
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
Couchbase Client Library: .NET (C#) 1.2
Chapters

Chapter 3. .NET Method Summary

Table 3.1.  .NET Client Library

MethodTitle
object.Append(key, value) Append a value to an existing key
object.Append(key, casunique, value) Append a value to an existing key
object.Cas(storemode, key, value) Compare and set a value providing the supplied CAS key matches
object.Cas(storemode, key, value, casunique) Compare and set a value providing the supplied CAS key matches
object.Cas(storemode, key, value, expiresat, casunique) Compare and set a value using the specified key with a specific expiry time
object.Cas(storemode, key, value, validfor, casunique) Compare and set the specified key with expiry time
object.Decrement(key, defaultvalue, offset) Decrement the value of an existing numeric key
object.Decrement(key, defaultvalue, offset, casunique) Decrement the value of an existing numeric key
object.Decrement(key, defaultvalue, offset, expiresat, casunique) Decrement the value of an existing numeric key
object.Decrement(key, defaultvalue, offset, validfor, casunique) Decrement the value of an existing numeric key
object.Decrement(key, defaultvalue, offset, expiresat) Decrement the value of an existing numeric key
object.Decrement(key, defaultvalue, offset, validfor) Decrement the value of an existing numeric key
object.ExecuteAppend(key, value) Append a value to an existing key and return a concat operation result
object.ExecuteAppend(key, casunique, value) Append a value to an existing key and return a concat operation result
object.ExecuteCas(storemode, key, value) Store a value using the specified key and return a store operation result
object.ExecuteCas(storemode, key, value, casunique) Compare and set a value using the specified key and return a store operation result
object.ExecuteCas(storemode, key, value, expiresat, casunique) Compare and set a value using the specified key with a specific expiry time and return a store operation result
object.ExecuteCas(storemode, key, value, validfor, casunique) Compare and set a value using the specified key with expiry time and return a store operation result
object.ExecuteDecrement(key, defaultvalue, offset) Decrement the value of an existing numeric key
object.ExecuteDecrement(key, defaultvalue, offset, casunique) Decrement the value of an existing numeric key
object.ExecuteDecrement(key, defaultvalue, offset, expiresat, casunique) Decrement the value of an existing numeric key
object.ExecuteDecrement(key, defaultvalue, offset, validfor, casunique) Decrement the value of an existing numeric key
object.ExecuteDecrement(key, defaultvalue, offset, expiresat) Decrement the value of an existing numeric key
object.ExecuteDecrement(key, defaultvalue, offset, validfor) Decrement the value of an existing numeric key
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.ExecuteIncrement(key, defaultvalue, offset) Increment the value of an existing numeric key
object.ExecuteIncrement(key, defaultvalue, offset, casunique) Increment the value of an existing numeric key
object.ExecuteIncrement(key, defaultvalue, offset, expiresat, casunique) Increment the value of an existing numeric key
object.ExecuteIncrement(key, defaultvalue, offset, validfor, casunique) Increment the value of an existing numeric key
object.ExecuteIncrement(key, defaultvalue, offset, expiresat) Increment the value of an existing numeric key
object.ExecuteIncrement(key, defaultvalue, offset, validfor) Increment the value of an existing numeric key
object.ExecutePrepend(key, value) Prepend a value to an existing key and return a concat operation result
object.ExecutePrepend(key, casunique, value) Prepend a value to an existing key and return a concat operation result
object.ExecuteRemove(key) Delete a key/value and return a remove operation result
object.ExecuteRemove-cas(key, casunique) Delete a key with a CAS operation and return a remove operation result
object.ExecuteRemove-observe(key, persistto) Delete a key/value and return a remove operation result
object.ExecuteStore(storemode, key, value) Store a value using the specified key and return a store operation result
object.ExecuteStore(storemode, key, value, expiresat) Store a value using the specified key with a specific expiry time and return a store operation result
object.ExecuteStore(storemode, key, value, expiresat, persistto, replicateto) Store a value using the specified key with a specific expiry time and return a store operation result
object.ExecuteStore(storemode, key, value, persistto, replicateto) Store a value using the specified key and return a store operation result
object.ExecuteStore(storemode, key, value, validfor) Store a value using the specified key with expiry time and return a store operation result
object.ExecuteStore(storemode, key, value, validfor, persistto, replicateto) Store a value using the specified key with expiry time and return a store operation result
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.Increment(key, defaultvalue, offset) Increment the value of an existing numeric key
object.Increment(key, defaultvalue, offset, casunique) Increment the value of an existing numeric key
object.Increment(key, defaultvalue, offset, expiresat, casunique) Increment the value of an existing numeric key
object.Increment(key, defaultvalue, offset, validfor, casunique) Increment the value of an existing numeric key
object.Increment(key, defaultvalue, offset, expiresat) Increment the value of an existing numeric key
object.Increment(key, defaultvalue, offset, validfor) Increment the value of an existing numeric key
object.KeyExists(key) Check whether key exists without attempting to get value
object.new CouchbaseClient([ url ] [, username ] [, password ]) Create connection to Couchbase Server
object.Prepend(key, value) Prepend a value to an existing key
object.Prepend(key, casunique, value) Prepend a value to an existing key
object.Remove(key) Delete a key/value
object.Store(storemode, key, value) Store a value using the specified key
object.Store(storemode, key, value, expiresat) Store a value using the specified key with a specific expiry time
object.Store(storemode, key, value, validfor) Store a value using the specified key with expiry time
object.Touch(key, expiry) Update the expiry time of an item
object.Unlock(key [, getl-expiry ]) Get the value for a key, lock the key from changes