Show / Hide Table of Contents

    DwUpdateEventArgs Class

    .NET Standard 2.x

    Represents an object which contains arguments used in the IDataStore.UpdateStart event and IDataStore.UpdateEnd event.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Syntax

       public class DwUpdateEventArgs;
    

    Constructors

    Name Description
    DwUpdateEventArgs() Initializes a new instance of the DwUpdateEventArgs class.
    DwUpdateEventArgs(int rowsInserted, int rowsUpdated, int rowsDeleted) Initializes a new instance of the DwUpdateEventArgs class and specifies values for the RowsInserted, RowsUpdated, RowsDeleted properties.

    Properties

    Name Return Type Description
    IsCancel bool Gets or sets whether to cancel the retrieval.
    RowsDeleted int Gets the number of rows deleted when updating the database.
    RowsInserted int Gets the number of rows inserted when updating the database.
    RowsUpdated int Gets the number of rows modified when updating the database.

    See Also

    IDataStore.UpdateStart

    IDataStore.UpdateEnd

    Back to top Generated by Appeon