Show / Hide Table of Contents

Class ObservableDictionaryRemovedEventArgs<TKey, TValue>

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

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

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

Key

Gets the key.

Declaration
public TKey Key { get; }
Property Value
Type Description
TKey
| Improve this Doc View Source

RemovedValue

Gets or sets the removed value.

Declaration
public TValue RemovedValue { get; set; }
Property Value
Type Description
TValue

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