System.Data.DataRowChangeEventArgs.DataRowChangeEventArgs C# (CSharp) Method

DataRowChangeEventArgs() public method

Initializes a new instance of the class.
public DataRowChangeEventArgs ( DataRow row, DataRowAction action )
row DataRow
action DataRowAction
        public DataRowChangeEventArgs(DataRow row, DataRowAction action)
        {
            Row = row;
            Action = action;
        }
DataRowChangeEventArgs