Class ObservableCollectionRemoveEventArgs<T>
Event arguments for an element that was removed from a collection.
Inheritance
System.Object
ObservableCollectionRemoveEventArgs<T>
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObservableCollectionRemoveEventArgs<T> : ObservableCollectionCancellableEventArgs
Type Parameters
Name | Description |
---|---|
T | The type of the value that will change. |
Constructors
| Improve this Doc View SourceObservableCollectionRemoveEventArgs(ICollection<T>)
Initializes a new instance of the ObservableCollectionRemoveEventArgs<T> class.
Declaration
public ObservableCollectionRemoveEventArgs(ICollection<T> removedValues)
Parameters
Type | Name | Description |
---|---|---|
ICollection<T> | removedValues | Removed values. |
Properties
| Improve this Doc View SourceRemovedValues
Gets the removed values.
Declaration
public ICollection<T> RemovedValues { get; }
Property Value
Type | Description |
---|---|
ICollection<T> |