featureServiceSessionType property

FeatureServiceSessionType featureServiceSessionType

The session type to use for branch-versioned ServiceGeodatabase objects. Default is FeatureServiceSessionType.transient.

Implementation

FeatureServiceSessionType get featureServiceSessionType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LoadSettings_getFeatureServiceSessionType(
      _handle,
      errorHandler,
    );
  });
  return FeatureServiceSessionType._fromCoreValue(
    coreValue,
  );
}
void featureServiceSessionType=(FeatureServiceSessionType value)

Implementation

set featureServiceSessionType(FeatureServiceSessionType value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LoadSettings_setFeatureServiceSessionType(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}