ArcObjects Library Reference (Carto)  

IImageServer4.Update Method

Updates a given list of raster items (images).

[Visual Basic .NET]
Public Function Update ( _
    ByVal pRIDs As IFIDSet, _
    ByVal pItemDescriptions As IRasterItemDescriptions _
) As IImageServerEditResults
[C#]
public IImageServerEditResults Update (
    IFIDSet pRIDs,
    IRasterItemDescriptions pItemDescriptions
);
[C++]
HRESULT Update(
  IFIDSet* pRIDs,
  IRasterItemDescriptions* pItemDescriptions,
  IImageServerEditResults** ppResults
);
[C++]

Parameters

pRIDs [in]

  pRIDs is a parameter of type IFIDSet

pItemDescriptions [in]

  pItemDescriptions is a parameter of type IRasterItemDescriptions

ppResults [out, retval]

  ppResults is a parameter of type IImageServerEditResults

Product Availability

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

Description

Update rasters in an image service (created from a SDE mosaic dataset) based on given FIDSet and RasterItemDescriptions

Remarks

Use Update method to update a raster catalog item in an image service served through mosaic dataset. New attributes, footrpint geometry, or transofmrations can be specified in RasterItemDescription. A new raster can be uploaded to replace existing raster.

 

See Also

IImageServer4 Interface