<AGSImageServiceIdentifyDelegate> Protocol Reference


Description

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

Defined in:
AGSImageServiceIdentifyTask.h ( ArcGIS library)
Since:
1.8

List of all members.

Public Member Functions

(void) - imageServiceIdentifyTask:operation:didFailToIdentifyWithError:
(void) - imageServiceIdentifyTask:operation:didIdentifyWithResult:

Member Function Documentation

- (void) imageServiceIdentifyTask: (AGSImageServiceIdentifyTask *)  identifyTask
operation: (NSOperation *)  op
didFailToIdentifyWithError: (NSError *)  error 
[optional]

Tells the delegate that AGSImageServiceIdentifyTask encountered an error.

Parameters:
identifyTask The task which performed the operation.
op NSOperation that performed the identify.
error Information about the error returned by the server.
Since:
1.8
- (void) imageServiceIdentifyTask: (AGSImageServiceIdentifyTask *)  identifyTask
operation: (NSOperation *)  op
didIdentifyWithResult: (AGSImageServiceIdentifyResult *)  result 
[required]

Tells the delegate that AGSImageServiceIdentifyTask completed successfully with the provided result.

Parameters:
identifyTask The task which performed the operation.
op NSOperation that performed the identify.
result The image service identify result.
Since:
1.8