FEATURECOUNT

Used in

RESPONSE  

Servers

Query  Feature  ArcMap  

Parent elements

FEATURES 

Syntax

<FEATURECOUNTAttribute Description Table
     (r)count="integer"
     (r)hasmore="true | false"
>

     No Child Elements
</FEATURECOUNT >
(r): Attribute or child element is required.

Description

Contains number of features found in a FEATURES response.

Notes


Attribute Descriptions for FEATURECOUNT

AttributeUsage
countNumber of features found.
hasmoreFlag for whether any more features need to be returned (true) or if all features have been returned (false).
Back to top 

Examples for FEATURECOUNT

<?xml version="1.0" encoding="UTF8"?>
<ARCXML version="1.1">
<RESPONSE>
  <FEATURES>
    <FEATURE>
      <FIELDS CUST_ID="4" NAME="Customer  4"  #SHAPE#="[Geometry]" #ID#="3" />
      <MULTIPOINT>
        <POINT x="-122.406680" y="37.747422" />
      </MULTIPOINT>
    </FEATURE>
    <FEATURECOUNT count="1" hasmore="false" />
  </FEATURES>
</RESPONSE>
</ARCXML>

Back to top