System.Data.DataRow.AcceptChanges Method

Commits all the changes made to this row since the last time DataRow.AcceptChanges was called.

Syntax

public void AcceptChanges ()

Remarks

When invoking DataRow.AcceptChanges, the DataRow.EndEdit method is implicitly called to end any edits. If the DataRow.RowState of the row was Added or Modified, the DataRow.RowState becomes Unchanged. If the DataRow.RowState was Deleted, the row is removed.

See the DataRow.BeginEdit method for more information.

The System.Data.DataTable class also has an DataTable.AcceptChanges method which affects changes made to the whole table. For more information and a code example that demonstrates how to accept and reject changes to individual data rows, see AcceptChanges and RejectChanges.

Requirements

Namespace: System.Data
Assembly: System.Data (in System.Data.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0