StorageItemMostRecentlyUsedList.ItemRemoved | itemremoved event

This topic has not yet been rated - Rate this topic

Fires when a storage item is removed from the most recently used (MRU) list.

Syntax


function onItemRemoved(eventArgs) { /* Your code */ }
 
// addEventListener syntax
storageItemMostRecentlyUsedList.addEventListener("itemremoved", onItemRemoved);
storageItemMostRecentlyUsedList.removeEventListener("itemremoved", onItemRemoved);
 
- or -

storageItemMostRecentlyUsedList.onitemremoved = onItemRemoved;


Event information

Delegate TypedEventHandler(StorageItemMostRecentlyUsedList, ItemRemovedEventArgs)

Remarks

Note  If you want to respond to ItemRemoved events you must register your event handle every time you get a new reference to the StorageItemMostRecentlyUsedList.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.Storage.AccessCache
Windows::Storage::AccessCache [C++]

Metadata

Windows.winmd

See also

StorageItemMostRecentlyUsedList
ItemRemovedEventArgs

 

 

Build date: 12/4/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.