Inserts or replaces a range of items into Couchbase Server.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)

Parameters
- items
- Type: System.Collections.Generic.IDictionary<String, T>
A IDictionary<TKey, TValue> of items to be stored in Couchbase.

- 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>)
An item is KeyValuePair<TKey, TValue> where K is a String and V is the Typeof the value use wish to store.

Use the ParallelOptions parameter to control the level of parallelism to use and/or to associate a CancellationToken with the operation.
