Table of Contents

Interface IChangeSet

Namespace
DynamicData
Assembly
DynamicData.dll

Base interface representing a set of changes.

public interface IChangeSet

Properties

Adds

Gets the number of additions.

int Adds { get; }

Property Value

int

Capacity

Gets or sets the capacity of the change set.

int Capacity { get; set; }

Property Value

int

The capacity.

Count

Gets the total update count.

int Count { get; }

Property Value

int

Moves

Gets the number of moves.

int Moves { get; }

Property Value

int

Refreshes

Gets the number of refreshes.

int Refreshes { get; }

Property Value

int

Removes

Gets the number of removes.

int Removes { get; }

Property Value

int