2 types derived from RowUpdatedEventArgs
System.Data.Odbc (1)
System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
47public sealed class OdbcRowUpdatedEventArgs : RowUpdatedEventArgs
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
426public sealed partial class OleDbRowUpdatedEventArgs : System.Data.Common.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\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)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (2)
178protected override System.Data.Common.RowUpdatedEventArgs CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } 182protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }