reconcileBranchVersion property

bool reconcileBranchVersion

True if replica branch version automatically reconciles with the default branch upon sync, false otherwise.

This parameter is supported by feature services that have the SyncCapabilities.supportsBranchVersionReconcile property set to true.

If this value is true and SyncCapabilities.supportsBranchVersionReconcile is false, GeodatabaseSyncTask will fail with ArcGISExceptionType.geodatabaseReconcileBranchVersionUnsupported

The default value is false.

Implementation

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

Implementation

set reconcileBranchVersion(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SyncGeodatabaseParameters_setReconcileBranchVersion(
        _handle, value, errorHandler);
  });
}