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