adTempus API
ArcanaDevelopment.adTempus.Client Namespace / SharedSchedule Class / GetMatchingDates Method
The earliest date (inclusive) to consider. The time portion is ignored.
The latest date (inclusive) to consider. The time portion is ignored.


In This Topic
    GetMatchingDates Method (SharedSchedule)
    In This Topic
    Gets a list of dates that match the schedule
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Function GetMatchingDates( _
       ByVal startDate As Date, _
       ByVal endDate As Date _
    ) As ReadOnlyCollection(Of ScheduleMatchDate)
    [NotNull()]
    public ReadOnlyCollection<ScheduleMatchDate> GetMatchingDates( 
       DateTime startDate,
       DateTime endDate
    )

    Parameters

    startDate
    The earliest date (inclusive) to consider. The time portion is ignored.
    endDate
    The latest date (inclusive) to consider. The time portion is ignored.

    Return Value

    A collection of dates that match the rule
    See Also