ClassAzureTileDownloader
Initializes a new instance of the AzureTileDownloader class.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.RadMap.dll
Syntax:
public class AzureTileDownloader : IMapTileDownloader
Inheritance: objectAzureTileDownloader
Implements:
Constructors
AzureTileDownloader()
Initializes a new instance of the MapTileDownloader class.
Declaration
public AzureTileDownloader()
Fields
webClientsPool
Declaration
protected Dictionary<string, HttpClient> webClientsPool
Field Value
Dictionary<string, HttpClient>
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 downloading a map tile from the specified URI for the given tile information.
CancelTileDownload(TileInfo)
Cancels an ongoing tile download for the specified tile.
Declaration
public void CancelTileDownload(TileInfo tileInfo)
Parameters
tileInfo
The tile information to cancel the download for.
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.
Events
TileDownloadComplete
Occurs when a tile download is complete.
Declaration
public event TileInfoEventHandler TileDownloadComplete
Event Value
Implements