Click or drag to resize

TransactionApiClientPostTransactionAsyncT Method

POST a js-transaction to ArangoDB.

Namespace:  ArangoDBNetStandard.TransactionApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<PostTransactionResponse<T>> PostTransactionAsync<T>(
	PostTransactionBody body
)

Parameters

body
Type: ArangoDBNetStandard.TransactionApi.ModelsPostTransactionBody
Object containing information to submit in the POST transaction request.

Type Parameters

T
Type to use for deserializing the object returned by the transaction function.

Return Value

Type: TaskPostTransactionResponseT
Response from ArangoDB after processing the request.

Implements

ITransactionApiClientPostTransactionAsyncT(PostTransactionBody)
Remarks
https://www.arangodb.com/docs/stable/http/transaction-js-transaction.html
See Also