ULRowUpdatedEventArgs constructor

Initializes a new instance of the ULRowUpdatedEventArgs 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  ULRowUpdatedEventArgs(
   DataRow row,
   IDbCommand command,
   StatementType statementType,
   DataTableMapping tableMapping
);
Parameters
  • row   The System.Data.DataRow sent through an DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping).

  • command   The System.Data.IDbCommand executed when DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping) is called.

  • 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