Skip to content

SavedTileTileCacheEventArgs

Namespace: ThinkGeo.Core

Provides data for tile-cache events raised after a tile has been saved.

public class SavedTileTileCacheEventArgs : System.EventArgs

Inheritance ObjectEventArgsSavedTileTileCacheEventArgs

Properties

TileSource

Gets or sets the identifier of the tile source that accepted the tile.

public string TileSource { get; set; }

Property Value

String

Tile

Gets or sets the tile that was saved to the cache.

public Tile Tile { get; set; }

Property Value

Tile

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.