rollbackOnFailure property

bool rollbackOnFailure

Indicates if a sync should roll back on a failure.

Implementation

bool get rollbackOnFailure {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SyncGeodatabaseParameters_getRollbackOnFailure(
        _handle, errorHandler);
  });
}
void rollbackOnFailure=(bool value)

Implementation

set rollbackOnFailure(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SyncGeodatabaseParameters_setRollbackOnFailure(
        _handle, value, errorHandler);
  });
}