Empty TileCache source doesn't throw any exception

308
0
09-05-2019 11:41 PM
Labels (1)
PrashantKirpan
Occasional Contributor

Hi All,

I am using compact cache "bundle" files to build basemap layer. If i pass empty folder path to TileCache constructor, SDK doesn't throw any exception and executes code successfully.

Before constructing basemap i want to check valid cache and throw exception in app. I observed that there is no change in LoadStatus,LoadError properties regardless of data.

Sample code:

ArcGISTiledLayer imageLayer = new ArcGISTiledLayer(new TileCache("PATH"));

ArcGISTiledLayer topolayer = new ArcGISTiledLayer(new TileCache("PATH"));

List<Layer> basemapLayers = new List<Layer>();

basemapLayers.Add(imageLayer);
basemapLayers.Add(topolayer);

Map = new Map(new Basemap(basemapLayers));

Yes I can check if files are present in folder or not but i am looking for valid exception from SDK.

SDK Version : WPF 100.5

Any help would be appreciated.

Regards,

Prashant 

0 Kudos
0 Replies