Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.44 KB

imapchangedeventargs_1.md

File metadata and controls

23 lines (16 loc) · 1.44 KB
-api-id -api-type
T:Windows.Foundation.Collections.IMapChangedEventArgs`1
winrt interface

Windows.Foundation.Collections.IMapChangedEventArgs

-description

Provides data for the changed event of a map collection.

-remarks

IMapChangedEventArgs<K> is specifically used for the MapChanged event of the IObservableMap<K,V> interface, via the MapChangedEventHandler<K,V> delegate. It's also used for PropertySet.MapChanged.

.NET developers can get instances of this interface via handling the PropertySet.MapChanged event or the MapChanged event from an IObservableMap instance. Even though the remainder of the collection support for IObservableMap or PropertySet uses language projections that change IMap<K,V> APIs to IDictionary<TKey,TValue> APIs, the MapChanged event, its delegates and its event data aren't changed by the projection and so "Map" (as opposed to "Dictionary") remains in the API names.

-examples

-see-also

PropertySet, IObservableMap<K,V>