Removes a list of
IDocument from the bucket asynchronously.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntaxpublic Task<IOperationResult[]> RemoveAsync<T>(
List<IDocument<T>> documents
)
public Task<IOperationResult[]> RemoveAsync<T>(
List<IDocument<T>> documents
)
Public Function RemoveAsync(Of T) (
documents As List(Of IDocument(Of T))
) As Task(Of IOperationResult())
Public Function RemoveAsync(Of T) (
documents As List(Of IDocument(Of T))
) As Task(Of IOperationResult())
public:
generic<typename T>
virtual Task<array<IOperationResult^>^>^ RemoveAsync(
List<IDocument<T>^>^ documents
) sealed
public:
generic<typename T>
virtual Task<array<IOperationResult^>^>^ RemoveAsync(
List<IDocument<T>^>^ documents
) sealed
abstract RemoveAsync :
documents : List<IDocument<'T>> -> Task<IOperationResult[]>
override RemoveAsync :
documents : List<IDocument<'T>> -> Task<IOperationResult[]>
abstract RemoveAsync :
documents : List<IDocument<'T>> -> Task<IOperationResult[]>
override RemoveAsync :
documents : List<IDocument<'T>> -> Task<IOperationResult[]>
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