ADO.NET in a Nutshell

DataRowChangeEventArgs

System.Data (system.data.dll) class

This class provides extra information for four DataTable events: DataTable.RowChanging , DataTable.RowChanged , DataTable.RowDeleting , and DataTable.RowDeleted . This information consists of the affected DataRow ( Row ) and the action that occurred on the row ( Action ).

public class DataRowChangeEventArgs : EventArgs { // Public Constructors public DataRowChangeEventArgs (DataRow row , DataRowAction action ); // Public Instance Properties public DataRowAction Action {get; } public DataRow Row {get; } }

Hierarchy

System.Object System.EventArgs DataRowChangeEventArgs

Passed To

DataRowChangeEventHandler.{BeginInvoke( ) , Invoke( )} , DataTable.{OnRowChanged( ) , OnRowChanging( ) , OnRowDeleted( ) , OnRowDeleting( )}

Категории