Inserts or replaces a range of items into Couchbase Server.
Namespace: Couchbase.CoreAssembly: 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.
- options
- Type: System.Threading.Tasks.ParallelOptions
A ParallelOptions instance with the options for the given operation.
- rangeSize
- Type: System.Int32
The size of each subrange

- 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.

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.
