BaconographyPortable.Services.Impl.SmartOfflineImageService.ImageBytesFromUrl C# (CSharp) Method

ImageBytesFromUrl() public method

public ImageBytesFromUrl ( string url ) : Task
url string
return Task
        public Task<byte[]> ImageBytesFromUrl(string url)
        {
            //there doesnt seem to be any reason to cache image bytes, the os is doing a fine job of it at least on WP8
            return _imagesService.ImageBytesFromUrl(url);
        }
    }