Class ObservableDictionaryRemovedEventArgs<TKey, TValue>
Event arguments for an element that was added to a collection.
Inheritance
System.Object
ObservableDictionaryRemovedEventArgs<TKey, TValue>
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObservableDictionaryRemovedEventArgs<TKey, TValue> : ObservableDictionaryEventArgs
Type Parameters
Name | Description |
---|---|
TKey | The type of the key that will change. |
TValue | The type of the value that will change. |
Constructors
| Improve this Doc View SourceObservableDictionaryRemovedEventArgs(TKey)
Initializes a new instance of the ObservableDictionaryRemovedEventArgs<TKey, TValue> class.
Declaration
public ObservableDictionaryRemovedEventArgs(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key | They key for this item. |
Properties
| Improve this Doc View SourceKey
Gets the key.
Declaration
public TKey Key { get; }
Property Value
Type | Description |
---|---|
TKey |
RemovedValue
Gets or sets the removed value.
Declaration
public TValue RemovedValue { get; set; }
Property Value
Type | Description |
---|---|
TValue |