Class ObservableDictionaryRemoveEventArgs<TKey, TValue>
Event arguments for an element that was removed from a collection.
Inheritance
System.Object
ObservableDictionaryRemoveEventArgs<TKey, TValue>
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObservableDictionaryRemoveEventArgs<TKey, TValue> : ObservableDictionaryCancellableEventArgs
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 SourceObservableDictionaryRemoveEventArgs(TKey)
Initializes a new instance of the ObservableDictionaryRemoveEventArgs<TKey, TValue> class.
Declaration
public ObservableDictionaryRemoveEventArgs(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 values.
Declaration
public TValue RemovedValue { get; set; }
Property Value
Type | Description |
---|---|
TValue |