GottenTileTileCacheEventArgs¶
Namespace: ThinkGeo.Core
Provides data for tile-cache events raised after a tile is successfully retrieved.
public class GottenTileTileCacheEventArgs : System.EventArgs
Inheritance object → EventArgs → GottenTileTileCacheEventArgs
Properties¶
Tile¶
Gets or sets the tile returned by the cache.
public Tile Tile { get; set; }
Property Value¶
TileSource¶
Gets or sets an optional identifier for the tile source.
public string TileSource { get; set; }
Property Value¶
Constructors¶
GottenTileTileCacheEventArgs()¶
Initializes a new instance of the GottenTileTileCacheEventArgs class.
public GottenTileTileCacheEventArgs()
GottenTileTileCacheEventArgs(Tile, string)¶
Initializes a new instance of the GottenTileTileCacheEventArgs class with the provided tile information.
public GottenTileTileCacheEventArgs(Tile tile, string tileSource)
Parameters¶
tile Tile
The tile that has been retrieved.
tileSource string
An optional identifier describing which cache returned the tile.