FEATURECOUNT  Examples

Used in:  RESPONSE  
Servers:  Query   Feature   ArcMap  
Parent elements:  FEATURES  

<FEATURECOUNT Attribute Description Table

     count ="integer"
     hasmore ="true | false"
>

     No Child Elements
</FEATURECOUNT >
Bold: Attribute or child element is required.


Description:


Restrictions:


Notes:


Attribute Descriptions for FEATURECOUNT:

Attribute Usage Back to Top
count 1 Number of features found.
hasmore 2 Flag for whether any more features need to be returned (true) or if all features have been returned (false).
 

Examples for FEATURECOUNT:

Example 1: Back to Top
<?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>