2 types derived from RowUpdatedEventArgs
System.Data.Odbc (1)
System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
47public sealed class OdbcRowUpdatedEventArgs : RowUpdatedEventArgs
System.Data.OleDb (1)
OleDbRowUpdatedEvent.cs (1)
8public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs
1 instantiation of RowUpdatedEventArgs
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
259return 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)
257protected virtual RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand? command, StatementType statementType, DataTableMapping tableMapping) 741protected virtual void OnRowUpdated(RowUpdatedEventArgs value) 1105RowUpdatedEventArgs? rowUpdatedEvent = null; 1292RowUpdatedEventArgs rowUpdatedEvent = CreateRowUpdatedEvent(null!, dataCommand, statementType, tableMapping); 1364private void UpdateBatchExecute(BatchCommandInfo[] batchCommands, int commandCount, RowUpdatedEventArgs rowUpdatedEvent) 1495private void UpdateRowExecute(RowUpdatedEventArgs rowUpdatedEvent, IDbCommand dataCommand, StatementType cmdIndex) 1595private int UpdatedRowStatus(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount) 1652private int UpdatedRowStatusErrors(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount)
System.Data.Odbc (2)
System\Data\Odbc\OdbcDataAdapter.cs (2)
143protected override RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand? command, StatementType statementType, DataTableMapping tableMapping) 153protected override void OnRowUpdated(RowUpdatedEventArgs value)
System.Data.OleDb (2)
OleDbDataAdapter.cs (2)
140protected override RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand? command, StatementType statementType, DataTableMapping tableMapping) 433protected override void OnRowUpdated(RowUpdatedEventArgs value)