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)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
426
public sealed partial class OleDbRowUpdatedEventArgs : System.Data.Common.
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\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)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (2)
178
protected 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); }
182
protected override void OnRowUpdated(System.Data.Common.
RowUpdatedEventArgs
value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }