supportsQuery property

bool supportsQuery

True if the map service supports query operations, such as identify and access attachment data, false otherwise.

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

Implementation

bool get supportsQuery {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MapServiceCapabilities_getSupportsQuery(
        _handle, errorHandler);
  });
}