ArcGISFeatureServiceInfo QML Type
Information about an ArcGIS feature service. More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
- List of all members, including inherited members
- ArcGISFeatureServiceInfo is part of QML Type List.
Properties
- allowGeometryUpdates : bool
- allowTrueCurvesUpdates : bool
- attribution : string
- description : string
- documentInfo : ServiceDocumentInfo
- editorTrackingInfo : EditorTrackingInfo
- featureServiceCapabilities : FeatureServiceCapabilities
- fullExtent : Envelope
- hasStaticData : bool
- hasVersionedData : bool
- initialExtent : Envelope
- layerInfos : list<IdInfo>
- maxRecordCount : string
- maxRecordCountAsInt : int
- onlyAllowTrueCurveUpdatesByTrueCurveClients : bool
- serviceDescription : string
- spatialReference : SpatialReference
- supportsDisconnectedEditing : bool
- supportsTrueCurve : bool
- syncCapabilities : SyncCapabilities
- syncEnabled : bool
- tableInfos : list<IdInfo>
- unit : Unit
- url : url
- version : string
- zDefault : double
- zDefaultsEnabled : bool
Detailed Description
Note: You cannot declare or create a component of this type in QML code.
Property Documentation
[read-only] allowGeometryUpdates : bool |
Returns whether the layer allows geometries of features to be updated (read-only).
You should check this property before allowing the ability to update a feature's geometry in your app.
[read-only, since Esri.ArcGISRuntime 100.12] allowTrueCurvesUpdates : bool |
true
if the service allows curve geometries to be updated (read-only).
This property can only be true
if supportsTrueCurve is true
.
If this property is true
and onlyAllowTrueCurveUpdatesByTrueCurveClients is false
, features with curve geometries can be updated by any client. This includes cases where the client provides a densified geometry to update the curve geometry.
By default, this API is not a true-curve-enabled client. Use ArcGISRuntimeEnvironment::serviceCurveGeometryMode to change this behavior.
This property was introduced in Esri.ArcGISRuntime 100.12.
See also supportsTrueCurve and allowTrueCurvesUpdates.
[read-only] attribution : string |
Returns the attribution information of the service (read-only).
[read-only] description : string |
Returns the description of the service (read-only).
[read-only] documentInfo : ServiceDocumentInfo |
Returns information about the backing map document used to create the service (read-only).
[read-only] editorTrackingInfo : EditorTrackingInfo |
Returns information about the service's editor tracking configuration (read-only).
[read-only] featureServiceCapabilities : FeatureServiceCapabilities |
Returns the operations that are allowed by the service (read-only).
Operations include Query, Create, Delete, Update, Editing, and Sync.
[read-only] fullExtent : Envelope |
Returns the full extent of geographic data available in the service (read-only).
[read-only] hasStaticData : bool |
Returns whether the service contains static data (read-only).
[read-only] hasVersionedData : bool |
Returns whether the service is backed by versioned data (read-only).
[read-only] initialExtent : Envelope |
Returns the default extent of geographic data available in the service (read-only).
[read-only] layerInfos : list<IdInfo> |
Returns information about layers in the service (read-only).
[read-only] maxRecordCount : string |
Returns the maximum number of features that will be returned by the service for any query operation (read-only).
Applications should handle re-querying the omitted results when this limit is reached.
Note: The underlying property is represented as a 64-bit integer type. See Accessing 64-bit integer properties from QML.
See also maxRecordCountAsInt.
[read-only, since Esri.ArcGISRuntime 100.3] maxRecordCountAsInt : int |
The same as maxRecordCount but represented as an integer type (read-only).
Note: The underlying property is represented as a 64-bit integer type. See Accessing 64-bit integer properties from QML.
This property was introduced in Esri.ArcGISRuntime 100.3.
[read-only, since Esri.ArcGISRuntime 100.12] onlyAllowTrueCurveUpdatesByTrueCurveClients : bool |
true
if the service only allows curve geometries to be updated by client code that identifies itself as a true-curve-enabled
client, indicating that client editing workflows account for curve segments correctly (read-only).
This property can only be true
if allowTrueCurvesUpdates is true
.
By default, this API is not a true-curve-enabled client. Use ArcGISRuntimeEnvironment::serviceCurveGeometryMode to change this behavior.
This property was introduced in Esri.ArcGISRuntime 100.12.
See also supportsTrueCurve and allowTrueCurvesUpdates.
[read-only] serviceDescription : string |
Returns the user friendly description about the service (read-only).
[read-only] spatialReference : SpatialReference |
Returns the spatial reference of geographic data available in the service (read-only).
[read-only] supportsDisconnectedEditing : bool |
Returns whether the service supports disconnected editing (read-only).
[read-only, since Esri.ArcGISRuntime 100.12] supportsTrueCurve : bool |
true
if the service supports curve segments in feature geometries (read-only).
Some services support storing feature geometries with curve segments. By default, these services return densified versions of the feature geometries instead. Use ArcGISRuntimeEnvironment::serviceCurveGeometryMode to change this behavior.
This property was introduced in Esri.ArcGISRuntime 100.12.
See also allowTrueCurvesUpdates and onlyAllowTrueCurveUpdatesByTrueCurveClients.
[read-only] syncCapabilities : SyncCapabilities |
Returns information about sync related capabilities of the service (read-only).
This is null if the service does not support sync.
See also syncEnabled.
[read-only] syncEnabled : bool |
Returns whether the service is sync enabled (read-only).
[read-only] tableInfos : list<IdInfo> |
Returns information about tables in the service (read-only).
[read-only] unit : Unit |
Returns the units used by the service (read-only).
[read-only] url : url |
Returns the URL of Service (read-only).
[read-only] version : string |
Returns the version of the service (read-only).
[read-only] zDefault : double |
Returns the default z-value of the service (read-only).
[read-only] zDefaultsEnabled : bool |
Returns whether the service has default z-values enabled (read-only).