31 references to Added
System.Data (29)
fx\src\data\System\Data\Common\AdapterUtil.cs (3)
2329
const DataRowState rowStates = DataRowState.
Added
| DataRowState.Deleted | DataRowState.Modified;
2336
case DataRowState.
Added
:
2358
case DataRowState.
Added
:
fx\src\data\System\Data\Common\DbDataAdapter.cs (2)
858
case DataRowState.
Added
:
1389
if (0 != ((DataRowState.
Added
|DataRowState.Deleted|DataRowState.Modified)&row.RowState)) {
fx\src\data\System\Data\DataRow.cs (2)
169
return DataRowState.
Added
; // 2
1281
if ((DataRowState.
Added
== state) || (DataRowState.Modified == state)) { //Copy current record for the row in Added, Modified state.
fx\src\data\System\Data\DataSet.cs (5)
1229
return GetChanges(DataRowState.
Added
| DataRowState.Deleted | DataRowState.Modified);
1261
if (0 != (rowStates & ~(DataRowState.
Added
| DataRowState.Deleted | DataRowState.Modified | DataRowState.Unchanged))) {
1316
Debug.Assert(DataRowState.
Added
== rowState ||
1440
return HasChanges(DataRowState.
Added
| DataRowState.Deleted | DataRowState.Modified);
1453
const DataRowState allRowStates = DataRowState.Detached | DataRowState.Unchanged | DataRowState.
Added
| DataRowState.Deleted | DataRowState.Modified;
fx\src\data\System\Data\DataTable.cs (8)
642
case DataRowState.
Added
:
744
case DataRowState.
Added
:
792
return DataRowState.
Added
;
2034
int saveIdxRecord = (saveRowState == DataRowState.
Added
) ? targetRow.newRecord : saveIdxRecord = targetRow.oldRecord;
2055
if (saveIdxRecord != ((saveRowState == DataRowState.
Added
) ? newRecord : oldRecord)) {
2058
saveIdxRecord = ((saveRowState == DataRowState.
Added
) ? newRecord : oldRecord);
2078
if (saveRowState == DataRowState.
Added
&& targetRow.oldRecord != -1)
2080
Debug.Assert(saveIdxRecord == ((saveRowState == DataRowState.
Added
) ? targetRow.newRecord : targetRow.oldRecord), "oops, you change index record without noticing it");
fx\src\data\System\Data\DataViewRowState.cs (1)
25
Added = DataRowState.
Added
,
fx\src\data\System\Data\Filter\AggregateNode.cs (1)
187
else if ((DataRowAction.Rollback == rows[i]._action) && (rows[i].RowState == DataRowState.
Added
)) {
fx\src\data\System\Data\xmlsaver.cs (2)
2156
if ((state == DataRowState.Unchanged ) || (state == DataRowState.
Added
)) {
2549
if (row.RowState == DataRowState.
Added
) {
fx\src\data\System\NewXml\XmlDataDocument.cs (5)
1133
case DataRowState.
Added
:
1812
case DataRowState.
Added
:
1893
case DataRowState.
Added
:
2378
return ( row.RowState & ( DataRowState.
Added
| DataRowState.Unchanged | DataRowState.Modified ) ) != 0;
2549
case DataRowState.
Added
:
System.Data.DataSetExtensions (2)
System\Data\DataTableExtensions.cs (2)
191
goto case DataRowState.
Added
;
193
case DataRowState.
Added
: