MemcachedBucket Remove Method (IList String , ParallelOptions, Int32)Couchbase .NET SDK 2.1.0 Documentation
Removes a range of documents for a given set of keys

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax
public IDictionary<string, IOperationResult> Remove(
	IList<string> keys,
	ParallelOptions options,
	int rangeSize
)

Parameters

keys
Type: System.Collections.Generic IList String 
The keys to remove
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

Return Value

Type: IDictionary String, IOperationResult 
A Dictionary TKey, TValue  of the keys sent and the IOperationResult T  result.

Implements

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