Polls the Alarm component for alarms that have been triggered since the provided Start date/time. If Start is null, all triggered alarms will be returned.

Namespace: iCal
Assembly: ICalVCard (in ICalVCard.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
IList<AlarmOccurrence> Poll(
	IDateTime fromDate,
	IDateTime toDate
)
Visual Basic
Function Poll ( _
	fromDate As IDateTime, _
	toDate As IDateTime _
) As IList(Of AlarmOccurrence)
Visual C++
IList<AlarmOccurrence>^ Poll(
	IDateTime^ fromDate, 
	IDateTime^ toDate
)

Parameters

fromDate
Type: iCal..::..IDateTime
toDate
Type: iCal..::..IDateTime

Return Value

A list of AlarmOccurrence objects, each containing a triggered alarm.

See Also