Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

BitmapCacheOption Enumeration

 

Specifies how a bitmap image takes advantage of memory caching.

Namespace:   System.Windows.Media.Imaging
Assembly:  PresentationCore (in PresentationCore.dll)

public enum class BitmapCacheOption

Member nameDescription
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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft