IMapChangedEventArgs<K>.Key Property

Definition

Gets the key of the item that changed.

public:
 property K Key { K get(); };
K Key();
public K Key { get; }
Public ReadOnly Property Key As K

Property Value

K

The key of the item that changed.

Remarks

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

Applies to

See also