ICalendar2CreateCalDateListProp Method 
IT Hit WebDAV Classes Reference  
    Namespace: 
   ITHit.Collab.Calendar
    Assembly:
   ITHit.Collab (in ITHit.Collab.dll) Version: 1.0.0.540 (1.0.0.540)
SyntaxICalDateList CreateCalDateListProp(
	DateTime[] dateTimes,
	string timeZoneId,
	bool allDay
)
Function CreateCalDateListProp ( 
	dateTimes As DateTime(),
	timeZoneId As String,
	allDay As Boolean
) As ICalDateList
ICalDateList^ CreateCalDateListProp(
	array<DateTime>^ dateTimes, 
	String^ timeZoneId, 
	bool allDay
)
abstract CreateCalDateListProp : 
        dateTimes : DateTime[] * 
        timeZoneId : string * 
        allDay : bool -> ICalDateList 
Parameters
- dateTimes
 - Type: SystemDateTime
List of date and time values. 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. 
Return Value
Type: 
ICalDateListObject implementing 
ICalDateList or null if 
dateTime parameter is null.
See Also