DataTableSurrogate::RowStates Property

Gets or sets an array that represents the state of each row in the table.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

public:
property BitArray^ RowStates {
	BitArray^ get ();
	void set (BitArray^ value);
}

Property Value

Type: System.Collections::BitArray
A BitArray object that represents whether a row is in one of four states: unchanged, added, modified, or deleted.

ExceptionCondition
ArgumentNullException

value is a nullptr.

The row states are represented with 2 bits. Therefore the length of the BitArray object will be twice the size of the number of rows.

Show: