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