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
)
Public Overridable Function PostTransactionAsync(Of T) (
body As PostTransactionBody
) As Task(Of PostTransactionResponse(Of T))
public:
generic<typename T>
virtual Task<PostTransactionResponse<T>^>^ PostTransactionAsync(
PostTransactionBody^ body
)
abstract PostTransactionAsync :
body : PostTransactionBody -> Task<PostTransactionResponse<'T>>
override PostTransactionAsync :
body : PostTransactionBody -> Task<PostTransactionResponse<'T>>
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:
TaskPostTransactionResponseTResponse from ArangoDB after processing the request.
Implements
ITransactionApiClientPostTransactionAsyncT(PostTransactionBody)Remarks
https://www.arangodb.com/docs/stable/http/transaction-js-transaction.html
See Also