PostTransactionResponseTError Property |
Whether the request resulted in error.
Namespace:
ArangoDBNetStandard.TransactionApi.Models
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public bool Error { get; set; }
Public Property Error As Boolean
Get
Set
public:
property bool Error {
bool get ();
void set (bool value);
}
member Error : bool with get, set
Property Value
Type:
BooleanRemarks
Note that in cases where an error occurs, the ArangoDBNetStandard
client will throw an
ApiErrorException rather than
populating this property. A try/catch block should be used instead
for any required error handling.
See Also