Skip to main content

ASPxDataUpdatedEventArgs(Int32, Exception, ASPxDataUpdatingEventArgs) Constructor

Initializes a new instance of the ASPxDataUpdatedEventArgs class with the specified settings.

Namespace: DevExpress.Web.Data

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ASPxDataUpdatedEventArgs(
    int affectedRecords,
    Exception exception,
    ASPxDataUpdatingEventArgs updatingArgs
)

Parameters

Name Type Description
affectedRecords Int32

An integer value that specifies the number of records affected by the update operation. This value is assigned to the ASPxDataBaseUpdatedEventArgs.AffectedRecords property.

exception Exception

A Exception object that represents the exception that was raised during the update operation. This value is assigned to the ASPxDataBaseUpdatedEventArgs.Exception property.

updatingArgs ASPxDataUpdatingEventArgs

The ASPxDataUpdatingEventArgs object.

See Also