Skip to main content
.NET 6.0+

ExceptionEventCreatedEventArgs(IEvent, IEvent) Constructor

Creates and initilizes an instance of the ExceptionEventCreatedEventArgs class.

Namespace: DevExpress.ExpressApp.Scheduler

Assembly: DevExpress.ExpressApp.Scheduler.v23.2.dll

Declaration

public ExceptionEventCreatedEventArgs(
    IEvent patternEvent,
    IEvent exceptionEvent
)

Parameters

Name Type Description
patternEvent DevExpress.Persistent.Base.General.IEvent

Specifies the original Event occurrence that was changed. This parameter is assigned to the ExceptionEventCreatedEventArgs.PatternEvent property.

exceptionEvent DevExpress.Persistent.Base.General.IEvent

Specifies the exceptional Event occurrence that was created. This parameter is assigned to the ExceptionEventCreatedEventArgs.ExceptionEvent property.

Remarks

Since instances of the ExceptionEventCreatedEventArgs class are automatically created and passed to handlers of the SchedulerListEditorBase.ExceptionEventCreated event, you do not need to call this constructor from your application.

See Also