ClassMapTileDownloader
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.RadMap.dll
Syntax:
public class MapTileDownloader : IMapTileDownloader
Inheritance: objectMapTileDownloader
Implements:
Constructors
MapTileDownloader()
Initializes a new instance of the MapTileDownloader class.
Declaration
public MapTileDownloader()
Fields
Properties
WebHeaders
Gets a collection of WebHeaders that will be sent to the server with each tile download request.
Declaration
public WebHeaderCollection WebHeaders { get; }
Property Value
Methods
BeginDownloadTile(Uri, TileInfo)
Begins a new tile download.
CancelTileDownload(TileInfo)
Cancels a ongoing tile download.
Declaration
public virtual void CancelTileDownload(TileInfo tileInfo)
Parameters
tileInfo
The tile information.
Implements
OnTileDownloadComplete(TileInfoEventArgs)
Fires the event.
Declaration
protected virtual void OnTileDownloadComplete(TileInfoEventArgs e)
Parameters
e
The TileInfoEventArgs instance containing the event data.
ShouldRetryDownload(Exception)
Determines whether a failed download should be performed again.
TileDownloadDataCompleted(object, DownloadDataCompletedEventArgs)
Called when the data download for the tile is complete.
Declaration
protected virtual void TileDownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e)
Parameters
sender
The sender.
e
DownloadDataCompletedEventArgs
The DownloadDataCompletedEventArgs instance containing the event data.
Events
TileDownloadComplete
Occurs when a tile download is complete.
Declaration
public event TileInfoEventHandler TileDownloadComplete
Event Value
Implements