Table of Contents

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

IList

IsReset

True, if the collection was reset, otherwise False

bool IsReset { get; }

Property Value

bool

MovedItems

Gets a list of moved items

IList MovedItems { get; }

Property Value

IList

NewItemsStartIndex

Gets the first index of new items or -1

int NewItemsStartIndex { get; }

Property Value

int

OldItemsStartIndex

Gets the first index of old items or -1

int OldItemsStartIndex { get; }

Property Value

int

RemovedItems

Gets a list of removed items

IList RemovedItems { get; }

Property Value

IList