Class ObservableDictionaryChangedEventArgs<TKey, TValue>
Base class for value event args.
Inheritance
System.Object
ObservableDictionaryChangedEventArgs<TKey, TValue>
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObservableDictionaryChangedEventArgs<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 SourceObservableDictionaryChangedEventArgs(TKey)
Initializes a new instance of the ObservableDictionaryChangedEventArgs<TKey, TValue> class.
Declaration
public ObservableDictionaryChangedEventArgs(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 |
NewValue
Gets or sets new value.
Declaration
public TValue NewValue { get; set; }
Property Value
Type | Description |
---|---|
TValue |
OldValue
Gets or sets old value.
Declaration
public TValue OldValue { get; set; }
Property Value
Type | Description |
---|---|
TValue |