IDocumentApiClientGetDocumentsAsyncT Method |
Get multiple documents.
Namespace:
ArangoDBNetStandard.DocumentApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<List<T>> GetDocumentsAsync<T>(
string collectionName,
IList<string> selectors,
DocumentHeaderProperties headers = null
)
Function GetDocumentsAsync(Of T) (
collectionName As String,
selectors As IList(Of String),
Optional headers As DocumentHeaderProperties = Nothing
) As Task(Of List(Of T))
generic<typename T>
Task<List<T>^>^ GetDocumentsAsync(
String^ collectionName,
IList<String^>^ selectors,
DocumentHeaderProperties^ headers = nullptr
)
abstract GetDocumentsAsync :
collectionName : string *
selectors : IList<string> *
?headers : DocumentHeaderProperties
(* Defaults:
let _headers = defaultArg headers null
*)
-> Task<List<'T>>
Parameters
- collectionName
- Type: SystemString
Collection name - selectors
- Type: System.Collections.GenericIListString
Document keys to fetch documents for - headers (Optional)
- Type: ArangoDBNetStandard.DocumentApi.ModelsDocumentHeaderProperties
The DocumentHeaderProperties values.
Type Parameters
- T
- The type of the documents
deserialized from the response.
Return Value
Type:
TaskListTSee Also