This document is archived and information here might be outdated.  Recommended version.


IImageServerProxyImpl.GetImageTileEx Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > II > IImageServerProxyImpl Interface > IImageServerProxyImpl.GetImageTileEx Method
ArcGIS Developer Help

IImageServerProxyImpl.GetImageTileEx Method

Gets a tile for a given tile location; returns expiration date/time, if available; also, returns possible reason why tile fetching has failed.

[Visual Basic .NET]
Public Sub GetImageTileEx ( _
    ByVal Level As Integer, _
    ByVal Row As Integer, _
    ByVal Column As Integer, _
    ByVal CacheFormat As Integer, _
    ByRef ppData As Byte[]&, _
    ByRef pExpiryDateTime As Double, _
    ByRef pTileState As esriTileState _
)
[C#]
public void GetImageTileEx (
    int Level,
    int Row,
    int Column,
    int CacheFormat,
    ref Byte[]& ppData,
    ref double pExpiryDateTime,
    ref esriTileState pTileState
);
[C++]
HRESULT GetImageTileEx(
  long Level,
  long Row,
  long Column,
  long CacheFormat,
  SAFEARRAY(System.Byte)* ppData,
  System.Double* pExpiryDateTime,
  esriTileState* pTileState
);
[C++]
Parameters
Level [in]

Level is a parameter of type long Row [in]
Row is a parameter of type long Column [in]
Column is a parameter of type long CacheFormat [in]
CacheFormat is a parameter of type long ppData [out]
ppData is a parameter of type SAFEARRAY(unsigned char)* pExpiryDateTime [out]
pExpiryDateTime is a parameter of type double* pTileState [out]
pTileState is a parameter of type esriTileState*

Product Availability

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

See Also

IImageServerProxyImpl Interface