<AGSIdentifyTaskDelegate> Protocol Reference


Description

A protocol which must be adopted by any class wishing to be notified when the AGSIdentifyTask completes successfully or encounters an error. An instance of the class must then be set as the delegate of AGSIdentifyTask.

Defined in:
AGSIdentifyTask.h ( ArcGIS library)
Since:
1.0

List of all members.

Public Member Functions

(void) - identifyTask:operation:didExecuteWithIdentifyResults:
(void) - identifyTask:operation:didFailWithError:

Member Function Documentation

- (void) identifyTask: (AGSIdentifyTask *)  identifyTask
operation: (NSOperation *)  op
didExecuteWithIdentifyResults: (NSArray *)  results 
[required]

Tells the delegate that AGSIdentifyTask completed successfully with the provided results.

Parameters:
identifyTask The task which performed the operation.
op NSOperation that performed the identify.
results The resulting array of AGSIdentifyResult objects.
Since:
1.0
- (void) identifyTask: (AGSIdentifyTask *)  identifyTask
operation: (NSOperation *)  op
didFailWithError: (NSError *)  error 
[optional]

Tells the delegate that AGSIdentifyTask encountered an error.

Parameters:
identifyTask The task which performed the operation.
op NSOperation that performed the identify.
error Information about the error returned by server.
Since:
1.0