Version 4.1.

This commit is contained in:
ClemensF 2017-09-05 23:59:22 +02:00
parent 526384170c
commit 61d06b4924
3 changed files with 14 additions and 4 deletions

View file

@ -17,13 +17,18 @@ namespace MapControl
/// <summary>
/// Default StorageFolder where an IImageCache instance may save cached data.
/// </summary>
public static readonly StorageFolder DefaultCacheFolder = ApplicationData.Current.TemporaryFolder;
public static StorageFolder DefaultCacheFolder { get; } = ApplicationData.Current.TemporaryFolder;
/// <summary>
/// The IImageCache implementation used to cache tile images. The default is null.
/// </summary>
public static Caching.IImageCache Cache { get; set; }
/// <summary>
/// Gets or sets the maximum number of concurrent connections.
/// </summary>
public static int DefaultConnectionLimit { get; set; } = 2;
private async Task LoadTileImageAsync(Tile tile, Uri uri, string cacheKey)
{
var cacheItem = await Cache.GetAsync(cacheKey);