A class containing information returned from some of the query methods, including Query, QueryFromService, QueryRelatedObject.
Property |
Type |
Description |
ServiceDataOptions |
Information about the format used to return the query response. | |
EmbeddedData |
byte[] |
Bytes used to store embedded data. |
NotModified |
bool |
The response did not change for the request based on the Etag sent in ServiceDataOptions. |
Object |
object |
The object returned is either a DataObjects or a DataObjectGroups depending on whether or not the query request including the option to group results by layer/table. |
ResponseEtag |
string |
Etag of the current response, if generate new otherwise it is empty. |
URI |
string |
If the request is returned in JSON a URL to the response is returned otherwise it is empty. |
Remarks
For grouped results, the Object returned is DataObjectGroups object which allows you to step through the results one group at a time. For ungrouped results, the Object returned is DataObjects which allows you to step through all results.