Member Junction
    Preparing search index...

    Base for Before events that support cancellation

    interface CancelableEventArgs {
        cancel: boolean;
        cancelReason?: string;
        sourceComponentName?: string;
        timestamp: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cancel: boolean

    Set to true by the container to cancel the operation

    cancelReason?: string

    Optional reason explaining why the operation was cancelled

    sourceComponentName?: string

    Optional name of the component that fired the event

    timestamp: Date

    When the event was fired