CouchbaseBucket.GetDocumentsAsync<T> Method Couchbase .NET SDK 2.3.3
Gets a list of documents by their given id as an asynchronous operation.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntax
public Task<IDocumentResult<T>[]> GetDocumentsAsync<T>(
	IEnumerable<string> ids
)

Parameters

ids
Type: System.Collections.Generic.IEnumerable<String>
The documents primary keys.
Type Parameters
T
The type T to convert the value to.

Return Value

Type: Task<IDocumentResult<T>[]>
The Task<TResult> array representing the asynchronous operation results.

Implements

IBucket.GetDocumentsAsync<T>(IEnumerable<String>)
See Also