Skip to content

GettingCacheTileFileVectorTileCacheEventArgs

Namespace: ThinkGeo.Core

Provides data for events raised before a cached vector-tile file is read.

public class GettingCacheTileFileVectorTileCacheEventArgs : System.EventArgs

Inheritance objectEventArgsGettingCacheTileFileVectorTileCacheEventArgs

Properties

TilePathFilename

Gets the full path to the cached tile file requested by the event.

public string TilePathFilename { get; }

Property Value

string

Cancel

Gets or sets a value indicating whether the cache read should be canceled.

public bool Cancel { get; set; }

Property Value

bool

AlternativeTile

Gets or sets an alternative tile that should be used instead of reading from disk.

public VectorTile AlternativeTile { get; set; }

Property Value

VectorTile

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.