MapTileDownloader
Class
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.RadMap.dll
Syntax:
C#
public class MapTileDownloader : IMapTileDownloader
Inheritance: objectMapTileDownloader
Implements:
Constructors
Initializes a new instance of the MapTileDownloader class.
C#
public MapTileDownloader()
Fields
C#
protected Dictionary<string, WebClient> webClientsPool
C#
protected object webClientsPoolLockObject
C#
protected Dictionary<string, Uri> webRequestCache
Properties
Gets a collection of WebHeaders that will be sent to the server with each tile download request.
C#
public WebHeaderCollection WebHeaders { get; }
Methods
Cancels a ongoing tile download.
C#
public virtual void CancelTileDownload(TileInfo tileInfo)
The tile information.
Implements:
Fires the event.
C#
protected virtual void OnTileDownloadComplete(TileInfoEventArgs e)
The TileInfoEventArgs instance containing the event data.
Called when the data download for the tile is complete.
C#
protected virtual void TileDownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e)
The sender.
eDownloadDataCompletedEventArgsThe DownloadDataCompletedEventArgs instance containing the event data.
Events
Occurs when a tile download is complete.
C#
public event TileInfoEventHandler TileDownloadComplete
Implements: