Click or drag to resize

DocumentApiClientPostDocumentsAsyncT Method

Post multiple documents in a single request.

Namespace:  ArangoDBNetStandard.DocumentApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<PostDocumentsResponse<T>> PostDocumentsAsync<T>(
	string collectionName,
	IList<T> documents,
	PostDocumentsQuery query = null,
	ApiClientSerializationOptions serializationOptions = null,
	DocumentHeaderProperties headers = null
)

Parameters

collectionName
Type: SystemString
documents
Type: System.Collections.GenericIListT
query (Optional)
Type: ArangoDBNetStandard.DocumentApi.ModelsPostDocumentsQuery
serializationOptions (Optional)
Type: ArangoDBNetStandard.SerializationApiClientSerializationOptions
The serialization options. When the value is null the the serialization options should be provided by the serializer, otherwise the given options should be used.
headers (Optional)
Type: ArangoDBNetStandard.DocumentApi.ModelsDocumentHeaderProperties
The DocumentHeaderProperties values.

Type Parameters

T

Return Value

Type: TaskPostDocumentsResponseT

Implements

IDocumentApiClientPostDocumentsAsyncT(String, IListT, PostDocumentsQuery, ApiClientSerializationOptions, DocumentHeaderProperties)
See Also