Evaluates component recurrences for the given range of time, for the type of recurring component specified.

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<T>(
	IDateTime FromDate,
	IDateTime ToDate
)
Visual Basic
<ObsoleteAttribute("This method is no longer supported.  Use GetOccurrences() instead.")> _
Public Sub Evaluate(Of T) ( _
	FromDate As IDateTime, _
	ToDate As IDateTime _
)
Visual C++
[ObsoleteAttribute(L"This method is no longer supported.  Use GetOccurrences() instead.")]
public:
generic<typename T>
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.

Type Parameters

T
The type of component to be evaluated for recurrences.

See Also