Table of Contents

Interface ICollectionChangedNotificationResult<T>

Namespace
NMF.Expressions
Assembly
NMF.Expressions.dll

Denotes a notification result for a collection

public interface ICollectionChangedNotificationResult<T> : ICollectionChangedNotificationResult, INotificationResult

Type Parameters

T

The type of elements

Inherited Members
Extension Methods

Properties

AddedItems

Gets a list of added items

List<T> AddedItems { get; }

Property Value

List<T>

MovedItems

Gets a list of moved items

List<T> MovedItems { get; }

Property Value

List<T>

RemovedItems

Gets a list of removed items

List<T> RemovedItems { get; }

Property Value

List<T>