Interface ICollectionChangedNotificationResult
- Namespace
- NMF.Expressions
- Assembly
- NMF.Expressions.dll
Denotes a notification result for a collection
public interface ICollectionChangedNotificationResult : INotificationResult
- Inherited Members
- Extension Methods
Properties
AddedItems
Gets a list of added items
IList AddedItems { get; }
Property Value
IsReset
True, if the collection was reset, otherwise False
bool IsReset { get; }
Property Value
MovedItems
Gets a list of moved items
IList MovedItems { get; }
Property Value
NewItemsStartIndex
Gets the first index of new items or -1
int NewItemsStartIndex { get; }
Property Value
OldItemsStartIndex
Gets the first index of old items or -1
int OldItemsStartIndex { get; }
Property Value
RemovedItems
Gets a list of removed items
IList RemovedItems { get; }