System.Data.Common.RowUpdatedEventArgs
namespace System.Data.Common
{
public class RowUpdatedEventArgs : EventArgs
{
public IDbCommand Command { get; }
public Exception Errors { get; set; }
public int RecordsAffected { get; }
public DataRow Row { get; }
public int RowCount { get; }
public StatementType StatementType { get; }
public UpdateStatus Status { get; set; }
public DataTableMapping TableMapping { get; }
public RowUpdatedEventArgs(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping);
public void CopyToRows(DataRow[] array);
public void CopyToRows(DataRow[] array, int arrayIndex);
}
}