ULRowUpdatingEventArgs constructor

Initializes a new instance of the ULRowUpdatingEventArgs class.

Syntax
Visual Basic
Public Sub New( _
   ByVal row As DataRow, _
   ByVal command As IDbCommand, _
   ByVal statementType As StatementType, _
   ByVal tableMapping As DataTableMapping _
)
C#
public  ULRowUpdatingEventArgs(
   DataRow row,
   IDbCommand command,
   StatementType statementType,
   DataTableMapping tableMapping
);
Parameters
  • row   The System.Data.DataRow to update.

  • command   The System.Data.IDbCommand to execute during the update.

  • statementType   One of the System.Data.StatementType values that specifies the type of query executed.

  • tableMapping   The System.Data.Common.DataTableMapping sent through an DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping).

See also