MemcachedBucket Upsert T  Method (IDictionary String, T )Couchbase .NET SDK 2.0
Inserts or replaces a range of items into Couchbase Server.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.2.0 (2.0.2.0)
Syntax
public IDictionary<string, IOperationResult<T>> Upsert<T>(
	IDictionary<string, T> items
)

Parameters

items
Type: System.Collections.Generic IDictionary String, T 
A IDictionary TKey, TValue  of items to be stored in Couchbase.
Type Parameters
T
The Type of the value to be inserted.

Return Value

Type: IDictionary String, IOperationResult T  
A IDictionary TKey, TValue  of IOperationResult which for which each is the result of the individual operation.

Implements

IBucket Upsert T (IDictionary String, T )
Remarks
Remarks
Use the ParallelOptions parameter to control the level of parallelism to use and/or to associate a CancellationToken with the operation.
See Also