DAVClientgetCalendarItems Method |
Returns the items within a Calendar (or limits to the list of ItemIds defined in ItemList)
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic DAVResult getCalendarItems(
ref DAVContainer DAVFolder,
ref List<string> ItemList = null,
bool bGetData = false
)
Public Function getCalendarItems (
ByRef DAVFolder As DAVContainer,
Optional ByRef ItemList As List(Of String) = Nothing,
Optional bGetData As Boolean = false
) As DAVResult
public:
DAVResult getCalendarItems(
DAVContainer^% DAVFolder,
List<String^>^% ItemList = nullptr,
bool bGetData = false
)
member getCalendarItems :
DAVFolder : DAVContainer byref *
?ItemList : List<string> byref *
?bGetData : bool
(* Defaults:
let _ItemList = defaultArg ItemList null
let _bGetData = defaultArg bGetData false
*)
-> DAVResult
Parameters
- DAVFolder
- Type: ARPDev.DAVLIBDAVContainer
DAVContainer/Folder representing calendar - ItemList (Optional)
- Type: System.Collections.GenericListString
List of ItemIds to fetch (if omitted or Nothing then it will return everything) - bGetData (Optional)
- Type: SystemBoolean
Determines whether to fetch just the ids and change information or the actual data for the items
Return Value
Type:
DAVResultDAVFolder.Items is populated with the resulting data
RemarksbGetData determines whether or not the VCards/VCalendar data should be returned
See Also