Table of Contents

Enum TileAccessMode

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

This enumeration represents how the tileCache should access the tiles.

public enum TileAccessMode

Fields

Default = 0

The default mode is ReadAddDelete.

ReadAdd = 2

This mode represents the tileCache can read tiles from it and add tiles to it, but can not delete tiles.

ReadAddDelete = 3

This mode represents the tileCache is no limited that can read, add, delete tiles.

ReadOnly = 1

This mode represents the tileCache just can read tiles from it.

Remarks

None