CouchbaseBucket.RemoveAsync<T> Method (List<IDocument<T>>)Couchbase .NET SDK 2.3.3
Removes a list of IDocument from the bucket asynchronously.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntax
public Task<IOperationResult[]> RemoveAsync<T>(
	List<IDocument<T>> documents
)

Parameters

documents
Type: System.Collections.Generic.List<IDocument<T>>
The documents.
Type Parameters
T
The type T of the document.

Return Value

Type: Task<IOperationResult[]>
A list of Task<TResult> objects representing the asynchronous operation.

Implements

IBucket.RemoveAsync<T>(List<IDocument<T>>)
See Also