GettingCacheTileFileVectorTileCacheEventArgs¶
Namespace: ThinkGeo.Core
Provides data for events raised before a cached vector-tile file is read.
public class GettingCacheTileFileVectorTileCacheEventArgs : System.EventArgs
Inheritance object → EventArgs → GettingCacheTileFileVectorTileCacheEventArgs
Properties¶
TilePathFilename¶
Gets the full path to the cached tile file requested by the event.
public string TilePathFilename { get; }
Property Value¶
Cancel¶
Gets or sets a value indicating whether the cache read should be canceled.
public bool Cancel { get; set; }
Property Value¶
AlternativeTile¶
Gets or sets an alternative tile that should be used instead of reading from disk.
public VectorTile AlternativeTile { get; set; }
Property Value¶
Constructors¶
GettingCacheTileFileVectorTileCacheEventArgs()¶
Initializes a new instance of the GettingCacheTileFileVectorTileCacheEventArgs class.
public GettingCacheTileFileVectorTileCacheEventArgs()
GettingCacheTileFileVectorTileCacheEventArgs(string)¶
Initializes a new instance of the GettingCacheTileFileVectorTileCacheEventArgs class with the specified tile path.
public GettingCacheTileFileVectorTileCacheEventArgs(string tilePathFilename)
Parameters¶
tilePathFilename string
The full path to the cached tile file.