Click or drag to resize

DocumentApiClient.DeleteDocumentsAsync<T> Method (String, IList<String>, 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
public virtual Task<DeleteDocumentsResponse<T>> DeleteDocumentsAsync<T>(
	string collectionName,
	IList<string> selectors,
	DeleteDocumentsQuery query = null,
	DocumentHeaderProperties headers = null
)

Parameters

collectionName
Type: System.String
selectors
Type: System.Collections.Generic.IList<String>
query (Optional)
Type: ArangoDBNetStandard.DocumentApi.Models.DeleteDocumentsQuery
headers (Optional)
Type: ArangoDBNetStandard.DocumentApi.Models.DocumentHeaderProperties
The DocumentHeaderProperties values.

Type Parameters

T

Return Value

Type: Task<DeleteDocumentsResponse<T>>

Implements

IDocumentApiClient.DeleteDocumentsAsync<T>(String, IList<String>, DeleteDocumentsQuery, DocumentHeaderProperties)
See Also