3 types derived from RowUpdatedEventArgs
System.Data (3)
fx\src\data\System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
51public sealed class OdbcRowUpdatedEventArgs : RowUpdatedEventArgs
fx\src\data\System\Data\OleDb\OleDbRowUpdatedEvent.cs (1)
15public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs {
fx\src\data\System\Data\SqlClient\SqlRowUpdatedEvent.cs (1)
17public sealed class SqlRowUpdatedEventArgs : RowUpdatedEventArgs {
1 instantiation of RowUpdatedEventArgs
System.Data (1)
fx\src\data\System\Data\Common\DbDataAdapter.cs (1)
229return new RowUpdatedEventArgs(dataRow, command, statementType, tableMapping);
15 references to RowUpdatedEventArgs
System.Data (15)
fx\src\data\System\Data\Common\DbDataAdapter.cs (9)
228virtual protected RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) { // V1.0.3300 622virtual protected void OnRowUpdated(RowUpdatedEventArgs value) { // V1.0.3300 931RowUpdatedEventArgs rowUpdatedEvent = null; 1091RowUpdatedEventArgs rowUpdatedEvent = CreateRowUpdatedEvent(null, dataCommand, statementType, tableMapping); 1156private void UpdateBatchExecute(BatchCommandInfo[] batchCommands, int commandCount, RowUpdatedEventArgs rowUpdatedEvent) { 1266private void UpdateRowExecute(RowUpdatedEventArgs rowUpdatedEvent, IDbCommand dataCommand, StatementType cmdIndex) { 1350private int UpdatedRowStatus(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount) { 1370private int UpdatedRowStatusContinue(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount) { 1399private int UpdatedRowStatusErrors(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, int commandCount) {
fx\src\data\System\Data\Odbc\OdbcDataAdapter.cs (2)
153override protected RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) { 161override protected void OnRowUpdated(RowUpdatedEventArgs value) {
fx\src\data\System\Data\OleDb\OleDbDataAdapter.cs (2)
152override protected RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) { 454override protected void OnRowUpdated(RowUpdatedEventArgs value) {
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (2)
182override protected RowUpdatedEventArgs CreateRowUpdatedEvent(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) { 228override protected void OnRowUpdated(RowUpdatedEventArgs value) {