SavedTileTileCacheEventArgs¶
Namespace: ThinkGeo.Core
Provides data for tile-cache events raised after a tile has been saved.
public class SavedTileTileCacheEventArgs : System.EventArgs
Inheritance Object → EventArgs → SavedTileTileCacheEventArgs
Properties¶
TileSource¶
Gets or sets the identifier of the tile source that accepted the tile.
public string TileSource { get; set; }
Property Value¶
Tile¶
Gets or sets the tile that was saved to the cache.
public Tile Tile { get; set; }
Property Value¶
Constructors¶
SavedTileTileCacheEventArgs()¶
Initializes a new instance of the SavedTileTileCacheEventArgs class.
public SavedTileTileCacheEventArgs()
SavedTileTileCacheEventArgs(Tile, String)¶
Initializes a new instance of the SavedTileTileCacheEventArgs class with the supplied tile information.
public SavedTileTileCacheEventArgs(Tile tile, string tileSource)
Parameters¶
tile Tile
The tile that was persisted.
tileSource String
An optional identifier describing which cache accepted the tile.