Interface ICollectionChangedNotificationResult<T>
Denotes a notification result for a collection
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public interface ICollectionChangedNotificationResult<T> : ICollectionChangedNotificationResult, INotificationResult
Type Parameters
Name | Description |
---|---|
T | The type of elements |
Properties
| Edit this page View SourceAddedItems
Gets a list of added items
Declaration
List<T> AddedItems { get; }
Property Value
Type | Description |
---|---|
List<T> |
MovedItems
Gets a list of moved items
Declaration
List<T> MovedItems { get; }
Property Value
Type | Description |
---|---|
List<T> |
RemovedItems
Gets a list of removed items
Declaration
List<T> RemovedItems { get; }
Property Value
Type | Description |
---|---|
List<T> |