BitmapCacheOption Enumeration
.NET Framework (current version)
Specifies how a bitmap image takes advantage of memory caching.
Assembly: PresentationCore (in PresentationCore.dll)
| Member name | Description | |
|---|---|---|
| Default | Caches the entire image into memory. This is the default value. | |
| None | Do not create a memory store. All requests for the image are filled directly by the image file. | |
| OnDemand | Creates a memory store for requested data only. The first request loads the image directly; subsequent requests are filled from the cache. | |
| OnLoad | Caches the entire image into memory at load time. All requests for image data are filled from the memory store. |
The following code example demonstrates how to load a BitmapImage and specify the BitmapCacheOption.
.NET Framework
Available since 3.0
Available since 3.0
Show: