Class ObservableCollectionRemovedEventArgs<T>
Event arguments for an element that was added to a collection.
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObservableCollectionRemovedEventArgs<T> : ObservableCollectionEventArgs
Type Parameters
Name | Description |
---|---|
T | The type of the value that will change. |
Constructors
| Improve this Doc View SourceObservableCollectionRemovedEventArgs(IEnumerable<T>)
Initializes a new instance of the ObservableCollectionRemovedEventArgs<T> class.
Declaration
public ObservableCollectionRemovedEventArgs(IEnumerable<T> removedValues)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<T> | removedValues | Added values. |
Properties
| Improve this Doc View SourceRemovedValues
Gets the removed values.
Declaration
public IEnumerable<T> RemovedValues { get; }
Property Value
Type | Description |
---|---|
IEnumerable<T> |