Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ EndEdit()

void System.Data.DataRow.EndEdit ( )
inline

Definition at line 567 of file DataRow.cs.

568 {
570 {
571 throw ExceptionBuilder.EndEditInRowChanging();
572 }
573 if (_newRecord == -1 || _tempRecord == -1)
574 {
575 return;
576 }
577 try
578 {
580 }
581 finally
582 {
584 }
585 }
void ResetLastChangedColumn()
Definition DataRow.cs:1058
readonly DataTable _table
Definition DataRow.cs:12
void SetNewRecord(DataRow row, int proposedRecord, DataRowAction action=DataRowAction.Change, bool isInMerge=false, bool fireEvent=true, bool suppressEnsurePropertyChanged=false)

References System.Data.DataRow._inChangingEvent, System.Data.DataRow._newRecord, System.Data.DataRow._table, System.Data.DataRow._tempRecord, System.Xml.Dictionary, System.Data.ExceptionBuilder.EndEditInRowChanging(), System.Data.DataRow.ResetLastChangedColumn(), and System.Data.DataTable.SetNewRecord().

Referenced by System.Data.DataRow.AcceptChanges(), System.Data.DataRowView.EndEdit(), and System.Data.DataRow.SetKeyValues().