System.Data.DataRowChangeEventArgs
namespace System.Data
{
public class DataRowChangeEventArgs : EventArgs
{
public DataRowAction Action { get; }
public DataRow Row { get; }
public DataRowChangeEventArgs(DataRow row, DataRowAction action);
}
}