adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DateCriterion Class / GetMatchingDates Method
The starting date (inclusive) of the range to check. Specify in the time zone of the adTempus server.
The ending date (inclusive) of the range to check. Specify in the time zone of the adTempus server.


In This Topic
    GetMatchingDates Method (DateCriterion)
    In This Topic
    Gets a list of dates in the specified range that match the rules of this criterion.
    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 starting date (inclusive) of the range to check. Specify in the time zone of the adTempus server.
    endDate
    The ending date (inclusive) of the range to check. Specify in the time zone of the adTempus server.

    Return Value

    A collection of all dates within the specified range that match the rules defined by this criterion
    See Also