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