2 types derived from RowUpdatedEventArgs
System.Data.Odbc (1)
System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
47
public sealed class OdbcRowUpdatedEventArgs :
RowUpdatedEventArgs
System.Data.OleDb (1)
OleDbRowUpdatedEvent.cs (1)
8
public sealed class OleDbRowUpdatedEventArgs :
RowUpdatedEventArgs
1 instantiation of RowUpdatedEventArgs
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
259
return new
RowUpdatedEventArgs
(dataRow, command, statementType, tableMapping);
14 references to RowUpdatedEventArgs
netstandard (1)
netstandard.cs (1)
476
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.
RowUpdatedEventArgs
))]
System.Data (1)
src\runtime\src\libraries\shims\System.Data\ref\System.Data.cs (1)
50
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.
RowUpdatedEventArgs
))]
System.Data.Common (8)
System\Data\Common\DbDataAdapter.cs (8)
257
protected virtual
RowUpdatedEventArgs
CreateRowUpdatedEvent(DataRow dataRow, IDbCommand? command, StatementType statementType, DataTableMapping tableMapping)
741
protected virtual void OnRowUpdated(
RowUpdatedEventArgs
value)
1105
RowUpdatedEventArgs
? rowUpdatedEvent = null;
1292
RowUpdatedEventArgs
rowUpdatedEvent = CreateRowUpdatedEvent(null!, dataCommand, statementType, tableMapping);
1364
private void UpdateBatchExecute(BatchCommandInfo[] batchCommands, int commandCount,
RowUpdatedEventArgs
rowUpdatedEvent)
1495
private void UpdateRowExecute(
RowUpdatedEventArgs
rowUpdatedEvent, IDbCommand dataCommand, StatementType cmdIndex)
1595
private int UpdatedRowStatus(
RowUpdatedEventArgs
rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount)
1652
private int UpdatedRowStatusErrors(
RowUpdatedEventArgs
rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount)
System.Data.Odbc (2)
System\Data\Odbc\OdbcDataAdapter.cs (2)
143
protected override
RowUpdatedEventArgs
CreateRowUpdatedEvent(DataRow dataRow, IDbCommand? command, StatementType statementType, DataTableMapping tableMapping)
153
protected override void OnRowUpdated(
RowUpdatedEventArgs
value)
System.Data.OleDb (2)
OleDbDataAdapter.cs (2)
140
protected override
RowUpdatedEventArgs
CreateRowUpdatedEvent(DataRow dataRow, IDbCommand? command, StatementType statementType, DataTableMapping tableMapping)
433
protected override void OnRowUpdated(
RowUpdatedEventArgs
value)