IDocumentApiClientDeleteDocumentsAsyncT Method (String, IListString, DeleteDocumentsQuery, DocumentHeaderProperties) |
Delete multiple documents based on the passed document selectors.
A document selector is either the document ID or the document Key.
Namespace:
ArangoDBNetStandard.DocumentApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<DeleteDocumentsResponse<T>> DeleteDocumentsAsync<T>(
string collectionName,
IList<string> selectors,
DeleteDocumentsQuery query = null,
DocumentHeaderProperties headers = null
)
Function DeleteDocumentsAsync(Of T) (
collectionName As String,
selectors As IList(Of String),
Optional query As DeleteDocumentsQuery = Nothing,
Optional headers As DocumentHeaderProperties = Nothing
) As Task(Of DeleteDocumentsResponse(Of T))
generic<typename T>
Task<DeleteDocumentsResponse<T>^>^ DeleteDocumentsAsync(
String^ collectionName,
IList<String^>^ selectors,
DeleteDocumentsQuery^ query = nullptr,
DocumentHeaderProperties^ headers = nullptr
)
abstract DeleteDocumentsAsync :
collectionName : string *
selectors : IList<string> *
?query : DeleteDocumentsQuery *
?headers : DocumentHeaderProperties
(* Defaults:
let _query = defaultArg query null
let _headers = defaultArg headers null
*)
-> Task<DeleteDocumentsResponse<'T>>
Parameters
- collectionName
- Type: SystemString
- selectors
- Type: System.Collections.GenericIListString
- query (Optional)
- Type: ArangoDBNetStandard.DocumentApi.ModelsDeleteDocumentsQuery
- headers (Optional)
- Type: ArangoDBNetStandard.DocumentApi.ModelsDocumentHeaderProperties
The DocumentHeaderProperties values.
Type Parameters
- T
Return Value
Type:
TaskDeleteDocumentsResponseTSee Also