Class ObservableDictionaryAddedEventArgs<TKey, TValue>
Event arguments for an element that was added to a collection.
Inheritance
System.Object
ObservableDictionaryAddedEventArgs<TKey, TValue>
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObservableDictionaryAddedEventArgs<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 SourceObservableDictionaryAddedEventArgs(TKey)
Initializes a new instance of the ObservableDictionaryAddedEventArgs<TKey, TValue> class.
Declaration
public ObservableDictionaryAddedEventArgs(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key | They key for this item. |
Properties
| Improve this Doc View SourceAddedValue
Gets or sets the added value.
Declaration
public TValue AddedValue { get; set; }
Property Value
Type | Description |
---|---|
TValue |
Key
Gets the key.
Declaration
public TKey Key { get; }
Property Value
Type | Description |
---|---|
TKey |