Show / Hide Table of Contents

Class ObservableDictionaryAddedEventArgs<TKey, TValue>

Event arguments for an element that was added to a collection.

Inheritance
System.Object
ObservableDictionaryEventArgs
ObservableDictionaryAddedEventArgs<TKey, TValue>
Inherited Members
ObservableDictionaryEventArgs.Context
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 Source

ObservableDictionaryAddedEventArgs(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 Source

AddedValue

Gets or sets the added value.

Declaration
public TValue AddedValue { get; set; }
Property Value
Type Description
TValue
| Improve this Doc View Source

Key

Gets the key.

Declaration
public TKey Key { get; }
Property Value
Type Description
TKey

Extension Methods

TraceExtensions.Trace<TObject, TMember>(TObject, Expression<Func<TObject, TMember>>, TraceMode)
ReactiveObjectTypeUtilExtensions.GetObservable(Object)
ReactiveObjectTypeUtilExtensions.GetObservable<TObject, TMember>(TObject, Expression<Func<TObject, TMember>>)
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX