Show / Hide Table of Contents

Class ObservableDictionaryRemoveEventArgs<TKey, TValue>

Event arguments for an element that was removed from a collection.

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

ObservableDictionaryRemoveEventArgs(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 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 values.

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