Packagecom.esri.aws.services
Classpublic class ResultSet

The table of data results from a request. The fields parameter contains information about the table's columns. The rows parameter contains the actual data. Output from Report and Spatial Query.



Public Properties
 PropertyDefined by
  fields : Array
Contains an array of fields.
ResultSet
  rows : Array
Contains an array of row data.
ResultSet
  totalCount : int
The total number of results that meet the search criteria.
ResultSet
Property detail
fieldsproperty
public var fields:Array

Contains an array of fields.

rowsproperty 
public var rows:Array

Contains an array of row data.

totalCountproperty 
public var totalCount:int

The total number of results that meet the search criteria. For example, if 50 records match the criteria and ResultSetRange:count is "20", totalCount is "50" even though only 20 records are actually returned to the client. The remaining 30 records can be retrieved in future requests using the object ResultSetRange.

See also