Skip to main content

ASPxSchedulerDataBaseUpdatedEventArgs.ExceptionHandled Property

Gets or sets a value indicating whether an exception that was raised during the data operation was handled in the event handler.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

public bool ExceptionHandled { get; set; }

Property Value

Type Description
Boolean

true if the exception was handled in the event handler; otherwise, false.

Remarks

When an exception is raised during the data operation, use the ExceptionHandled property to indicate whether the exception was handled in the event handler. When this property is set to true, the exception is considered handled and its processing is stopped. To determine which exception was raised, use the ASPxSchedulerDataBaseUpdatedEventArgs.Exception property.

See Also