Show / Hide Table of Contents

Enum FeatureRequestMode

Describes the feature request mode for a ServiceFeatureTable. It determines (1) whether features are cached locally (for quicker access by map and scene layers) and (2) whether queries are performed on the local cache or on the server.

Namespace: Esri.ArcGISRuntime.Data
Assembly: Esri.ArcGISRuntime.dll
Syntax
public enum FeatureRequestMode

Fields

Name Description
ManualCache

The features are requested from the server by an explicit call to PopulateFromServiceAsync(QueryParameters, Boolean, IEnumerable<String>), which populates the local cache. Queries performed on the table will be executed locally.

In this mode, the features have all fields defined by the System.Collections.Generic.IEnumerable<T> you pass to PopulateFromServiceAsync(QueryParameters, Boolean, IEnumerable<String>).

OnInteractionCache

The features are requested from the server as they are needed, in response to user or developer interaction with the layer (pan, zoom). Features are cached in the local table for the duration of the session. Queries are executed on the local cache or (if requested features are not resident in the cache) on the server. This mode is the default.

In this mode, features have a minimum set of attributes, and feature geometries have no m-values even if m-values are defined by the service. This is an optimization for faster rendering. To access all attributes or access geometries that contain m-values, the features you get from a query must be loaded. You can load them yourself or request that the query method return them already loaded (see LoadAll). For more information, see the class description for ServiceFeatureTable.

OnInteractionNoCache

The features are always requested from the server and are never cached. This mode ensures that you are working against the latest data, but it has a high network bandwidth since it goes to the server for all interactions (pans, zooms, selects, or queries).

In this mode, features have a minimum set of attributes, and feature geometries have no m-values even if m-values are defined by the service. This is an optimization for faster rendering. To access all attributes or access geometries that contain m-values, the features you get from a query must be loaded. You can load them yourself or request that the query method return them already loaded (see LoadAll). For more information, see the class description for ServiceFeatureTable.

Undefined

Indicates the feature table has not been loaded and the mode has yet to be set.

Applies to

TargetVersions
.NET Standard 2.0100.3 - 200.7
.NET100.13 - 200.7
.NET Windows100.13 - 200.7
.NET Android200.0 - 200.7
.NET iOS200.0 - 200.7
.NET Framework100.0 - 200.7
Xamarin.Android100.0 - 100.15
Xamarin.iOS100.0 - 100.15
UWP100.0 - 200.7
In This Article
Back to top Copyright © 2022 Esri.