reconcileBranchVersion property

bool reconcileBranchVersion

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

This property only applies to feature services that are branch versioned and have a true value for the SyncCapabilities.supportsBranchVersionReconcile property.

The default value is false.

Implementation

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

Implementation

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