Windows.Storage.AccessCache Namespace

Enables and manages access to the most recently used (MRU) list of storage items, and to the list of storage items that the application has saved for efficient future access.

Classes

AccessListEntryView

A list of the entries that are in your app's most recently used list (MRU) (obtained from the static StorageApplicationPermissions.MostRecentlyUsedList property) and in your app's future-access list (obtained from the static StorageApplicationPermissions.FutureAccessList property).

ItemRemovedEventArgs

Provides data about an ItemRemoved event.

StorageApplicationPermissions

Provides static properties for you to get your app's most recently used list (MRU) (use StorageApplicationPermissions.MostRecentlyUsedList) and future-access list (use StorageApplicationPermissions.FutureAccessList.

StorageItemAccessList

Represents your app's future-access list (obtained from the static StorageApplicationPermissions.FutureAccessList property). By picking files and folders, your user grants your app permission to access items that might not be accessible otherwise. If you add these items to your future-access list then you'll retain that permission when your app wants to access those items again later. Items are stored in the future-access list as StorageFile and StorageFolder objects.

StorageItemMostRecentlyUsedList

Represents your app's most recently used list (MRU) (obtained from the static StorageApplicationPermissions.MostRecentlyUsedList property). You use your MRU to track items (files and/or folders) that the user has accessed most recently. Items are stored in the MRU as StorageFile and StorageFolder objects.

Structs

AccessListEntry

Represents a list entry that contains the identifier and metadata for a StorageFile or StorageFolder object in a list.

Interfaces

IStorageItemAccessList

Represents a list of storage items that the app has stored for efficient future access.

Enums

AccessCacheOptions

Describes the behavior to use when the app accesses an item in a list.

RecentStorageItemVisibility

Describes the extent of the visibility of a storage item added to the most recently used (MRU) list.

See also