Skip to main content
All docs
V26.1
  • IOutlookEngine.GetOccurrencesFromTemplateAsync(String, DateTime, DateTime, Int32) Method

    Returns a task that obtains event occurrences for the specified date range.

    Namespace: DevExpress.XtraScheduler.Microsoft365Calendar

    Assembly: DevExpress.XtraScheduler.v26.1.Microsoft365Calendar.dll

    Declaration

    Task<List<Event>> GetOccurrencesFromTemplateAsync(
        string eventId,
        DateTime startTime,
        DateTime endTime,
        int pageLength = 100
    )

    Parameters

    Name Type Description
    eventId String

    An event ID.

    startTime DateTime

    The first date in the range.

    endTime DateTime

    The last date in the range.

    Optional Parameters

    Name Type Default Description
    pageLength Int32 100

    The number of items on a single returned page.

    Returns

    Type
    Task<List<Microsoft.Graph.Models.Event>>
    See Also