com.esri.arcgis.carto
Interface IImageServerIdentifyResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
ImageServerIdentifyResults

public interface IImageServerIdentifyResults
extends Serializable

Provides access to the Image Server Identify Results Interface.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void add(IImageServerIdentifyResult pIdentifyResult)
          Adds an identify result.
 int getCount()
          The identify result count.
 IImageServerIdentifyResult getElement(int index)
          The identify result at the specified position.
 void insert(int index, IImageServerIdentifyResult pIdentifyResult)
          Adds an identify result at the specified position.
 void remove(int index)
          Removes the identify result at the specified position.
 void removeAll()
          Removes all identify results.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The identify result count.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pCount
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getElement

IImageServerIdentifyResult getElement(int index)
                                      throws IOException,
                                             AutomationException
The identify result at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.carto.IImageServerIdentifyResult
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(int index)
            throws IOException,
                   AutomationException
Removes the identify result at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

void removeAll()
               throws IOException,
                      AutomationException
Removes all identify results.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

void add(IImageServerIdentifyResult pIdentifyResult)
         throws IOException,
                AutomationException
Adds an identify result.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pIdentifyResult - A reference to a com.esri.arcgis.carto.IImageServerIdentifyResult (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insert

void insert(int index,
            IImageServerIdentifyResult pIdentifyResult)
            throws IOException,
                   AutomationException
Adds an identify result at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
pIdentifyResult - A reference to a com.esri.arcgis.carto.IImageServerIdentifyResult (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.