Xamarin.ImageLoader
1.0.3
dotnet add package Xamarin.ImageLoader --version 1.0.3
NuGet\Install-Package Xamarin.ImageLoader -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Xamarin.ImageLoader" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Xamarin.ImageLoader --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Xamarin.ImageLoader, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Xamarin.ImageLoader as a Cake Addin #addin nuget:?package=Xamarin.ImageLoader&version=1.0.3 // Install Xamarin.ImageLoader as a Cake Tool #tool nuget:?package=Xamarin.ImageLoader&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ImageLoader
A Reusable component to Download Image directly from URL. This also supportes Caching the downloaded images efficiently
Usage:
using Subsystems.Cache.External;
using Subsystems.ImageLoader.External;
....
....
private CMPCacheProxy _cacheProxy;
private CMPImageLoaderProxy _imageLoaderProxy;
....
....
var baseFolderPathString = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
_cacheProxy = new CMPCacheProxy(baseFolderPathString, 5 * 1024);
_cacheProxy.ExpiryDays(1);
Explicit Cache
Inject Cache explicitly <br>
_imageLoaderProxy = new CMPImageLoaderProxy("<Image_URL>", _cacheProxy);
await _imageLoaderProxy.LoadImageAsync();
Implicit Cache
This will create a default Cache with 7 days Expiry <br>
_imageLoaderProxy = new CMPImageLoaderProxy("<Image_URL>", <sieLimitInKB>);
await _imageLoaderProxy.LoadImageAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid90 is compatible. |
Xamarin.iOS | xamarinios10 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
MonoAndroid 9.0
- Newtonsoft.Json (>= 11.0.2)
- Xamarin.CustomCache (>= 1.0.4)
- Xamarin.CustomFileManager (>= 1.0.1)
- Xamarin.HttpConnection (>= 1.0.2)
-
Xamarin.iOS 1.0
- Newtonsoft.Json (>= 11.0.2)
- Xamarin.CustomCache (>= 1.0.4)
- Xamarin.CustomFileManager (>= 1.0.1)
- Xamarin.HttpConnection (>= 1.0.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Xamarin.ImageLoader:
Package | Downloads |
---|---|
Xamarin.CustomImageView.iOS
A custom ImageView component for iOS with inteligent Caching, Handle Cache expiry, Automatic Download |
GitHub repositories
This package is not used by any popular GitHub repositories.
Dependent libraries updated