ICalendar2CreateRecurrenceIdProp Method 
IT Hit WebDAV Classes Reference 
            Creates 
IRecurrenceId property. Returns null if 
dateTime parameter is null. 
            Assign the value returned by this method to 
RecurrenceId property.
            
 
    Namespace: 
   ITHit.Collab.Calendar
    Assembly:
   ITHit.Collab (in ITHit.Collab.dll) Version: 1.0.0.540 (1.0.0.540)
 Syntax
SyntaxIRecurrenceId CreateRecurrenceIdProp(
	Nullable<DateTime> dateTime,
	string timeZoneId,
	bool allDay,
	bool isThisAndFuture
)
Function CreateRecurrenceIdProp ( 
	dateTime As Nullable(Of DateTime),
	timeZoneId As String,
	allDay As Boolean,
	isThisAndFuture As Boolean
) As IRecurrenceId
IRecurrenceId^ CreateRecurrenceIdProp(
	Nullable<DateTime> dateTime, 
	String^ timeZoneId, 
	bool allDay, 
	bool isThisAndFuture
)
abstract CreateRecurrenceIdProp : 
        dateTime : Nullable<DateTime> * 
        timeZoneId : string * 
        allDay : bool * 
        isThisAndFuture : bool -> IRecurrenceId 
Parameters
- dateTime
- Type: SystemNullableDateTime
 Date and time. If null is passed, this method returns null.
- timeZoneId
- Type: SystemString
 Time zone ID. Pass "UTC" if UTC time must be specified. Pass null if "floating" time must be specified.
- allDay
- Type: SystemBoolean
 Pass true for all-day events and to-do. The time part in dateTime will be ignored in this case.
- isThisAndFuture
- Type: SystemBoolean
 Pass true if "RANGE" parameter should be added with "THISANDFUTURE" value to indicate a range defined by the
            given recurrence instance and all subsequent instances.
Return Value
Type: 
IRecurrenceIdObject implementing 
IRecurrenceId or null if 
dateTime parameter is null.
 See Also
See Also