DDay.iCal Version 0.71

[This is preliminary documentation and is subject to change.]

Returns all occurrences of components of type T that start on the date provided. All components starting between 12:00:00AM and 11:59:59 PM will be returned.
Note: This will first Evaluate() the date range required in order to determine the occurrences for the date provided, and then return the occurrences.

Namespace:  DDay.iCal
Assembly:  DDay.iCal (in DDay.iCal.dll) Version: 0.71.0.0 (0.71.0.0)

Syntax

C#
public virtual List<Occurrence> GetOccurrences<T>(
	iCalDateTime dt
)
where T : RecurringComponent

Parameters

dt
Type: DDay.iCal.DataTypes..::.iCalDateTime
The date for which to return occurrences.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:DDay.iCal.iCalendar.GetOccurrences``1(DDay.iCal.DataTypes.iCalDateTime)"]

Return Value

A list of Periods representing the occurrences of this object.

See Also