Evaluates component recurrences for the given range of time.

Examples

For example, if you are displaying a month-view for January 2007, you would want to evaluate recurrences for Jan. 1, 2007 to Jan. 31, 2007 to display relevant information for those dates.

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

Syntax

C#
[ObsoleteAttribute("This method is no longer supported.  Use GetOccurrences() instead.")]
public void Evaluate(
	IDateTime FromDate,
	IDateTime ToDate
)
Visual Basic
<ObsoleteAttribute("This method is no longer supported.  Use GetOccurrences() instead.")> _
Public Sub Evaluate ( _
	FromDate As IDateTime, _
	ToDate As IDateTime _
)
Visual C++
[ObsoleteAttribute(L"This method is no longer supported.  Use GetOccurrences() instead.")]
public:
void Evaluate(
	IDateTime^ FromDate, 
	IDateTime^ ToDate
)

Parameters

FromDate
Type: iCal..::..IDateTime
The beginning date/time of the range to test.
ToDate
Type: iCal..::..IDateTime
The end date/time of the range to test.

See Also