supportsData property

bool supportsData

True if the map service supports data operations, such as find, query, and related records, false otherwise.

All ArcGIS REST API operations define their required capability in the Map Service help documentation.

Implementation

bool get supportsData {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MapServiceCapabilities_getSupportsData(
        _handle, errorHandler);
  });
}