dotConnect for Zoho Desk Documentation
Devart.Data.ZohoDesk Namespace / ZohoDeskRowUpdatedEventArgs Class / ZohoDeskRowUpdatedEventArgs Constructor
The System.Data.DataRow sent through an update operation.
The ZohoDeskCommand executed when System.Data.Common.DbDataAdapter.Update() is called.
One of the System.Data.StatementType values that specifies the type of query executed.
The System.Data.Common.DataTableMapping sent through System.Data.Common.DbDataAdapter.Update().

In This Topic
    ZohoDeskRowUpdatedEventArgs Constructor
    In This Topic
    Initializes a new instance of the ZohoDeskRowUpdatedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal row As DataRow, _
       ByVal command As IDbCommand, _
       ByVal statementType As StatementType, _
       ByVal tableMapping As DataTableMapping _
    )
    public ZohoDeskRowUpdatedEventArgs( 
       DataRow row,
       IDbCommand command,
       StatementType statementType,
       DataTableMapping tableMapping
    )

    Parameters

    row
    The System.Data.DataRow sent through an update operation.
    command
    The ZohoDeskCommand executed when System.Data.Common.DbDataAdapter.Update() 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 System.Data.Common.DbDataAdapter.Update().
    See Also