Skip to main content
A newer version of this page is available. .

ASPxSchedulerDataUpdatedEventArgs(Int32, Exception, OrderedDictionary, OrderedDictionary, OrderedDictionary) Constructor

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

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v18.2.dll

Declaration

public ASPxSchedulerDataUpdatedEventArgs(
    int affectedRecords,
    Exception exception,
    OrderedDictionary keys,
    OrderedDictionary oldValues,
    OrderedDictionary newValues
)

Parameters

Name Type Description
affectedRecords Int32

An integer value, representing the number of records affected by the current data operation.

exception Exception

An Exception object, that represents the exception that was raised during the data operation.

keys OrderedDictionary

An OrderedDictionary that contains a dictionary of key field name/value pairs for the record.

oldValues OrderedDictionary

An OrderedDictionary that contains a dictionary of the original field name/value pairs for the record.

newValues OrderedDictionary

An OrderedDictionary that contains a dictionary of the new field name/value pairs for the record.

See Also