adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / HolidayTreatment Enumeration


In This Topic
    HolidayTreatment Enumeration
    In This Topic
    Determines how a ArcanaDevelopment.adTempus.Client.ScheduleTrigger will behave if a scheduled execution falls on a holiday
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("0F943A5B-C141-4F6D-954B-B977AD49D094")>
    Public Enum HolidayTreatment 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("0F943A5B-C141-4F6D-954B-B977AD49D094")]
    public enum HolidayTreatment : System.Enum 
    [ComVisible(true)]
    [Guid("0F943A5B-C141-4F6D-954B-B977AD49D094")]
    public enum class HolidayTreatment : public System.Enum 
    Members
    MemberValueDescription
    IgnoreHolidays0 No special behavior (job is triggered)
    NearestBusinessDay2 The job is triggered at the same time(s) on the nearest day that is not a Saturday, Sunday, or holiday.
    NearestNonHoliday5 The job is triggered at the same time(s) on the nearest day that is not a holiday.
    NextBusinessDay4 The job is triggered at the same time(s) on the nearest later day that is not a Saturday, Sunday, or holiday.
    NextNonHoliday7 The job is triggered at the same time(s) on the nearest later day that is not a holiday.
    PreviousBusinessDay3 The job is triggered at the same time(s) on the nearest earlier day that is not a Saturday, Sunday, or holiday.
    PreviousNonHoliday6 The job is triggered at the same time(s) on the nearest earlier day that is not a holiday.
    SkipHolidays1 The day is skipped (job is not triggered on this day).
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.HolidayTreatment

    See Also