ArcObjects Library Reference (Carto)  

IImageServer4.IdentifyAll Method

Identifies the pixel values and all catalog items at the given one or more locations.

[Visual Basic .NET]
Public Function IdentifyAll ( _
    ByVal pLocations As IGeometry, _
    ByVal pMosaicRule As IMosaicRule, _
    ByVal pCellsize As IPoint, _
    ByVal pRenderingRule As IRenderingRule, _
    ByVal options As String _
) As IImageServerIdentifyResults
[C#]
public IImageServerIdentifyResults IdentifyAll (
    IGeometry pLocations,
    IMosaicRule pMosaicRule,
    IPoint pCellsize,
    IRenderingRule pRenderingRule,
    string options
);
[C++]
HRESULT IdentifyAll(
  IGeometry* pLocations,
  IMosaicRule* pMosaicRule,
  IPoint* pCellsize,
  IRenderingRule* pRenderingRule,
  BSTR options,
  IImageServerIdentifyResults** ppIdentifyResults
);
[C++]

Parameters

pLocations [in]

  pLocations is a parameter of type IGeometry

pMosaicRule [in]

  pMosaicRule is a parameter of type IMosaicRule

pCellsize [in]

  pCellsize is a parameter of type IPoint

pRenderingRule [in]

  pRenderingRule is a parameter of type IRenderingRule

options [in]   options is a parameter of type BSTR ppIdentifyResults [out, retval]

  ppIdentifyResults is a parameter of type IImageServerIdentifyResults

Product Availability

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

Remarks

Each element in the returned ImageServerIdentifyResult array corresponds to the identify result of a location in the given locations. Footprint geometry and catalog items may be skipped to speed up the operation by specifying options:
ITEMS=NO          - only pixel value is returned
GEOMETRY=NO    - pixel value, and item information are returned, but no geometry, and visibilities

See Also

IImageServer4 Interface