Click or drag to resize
DAVClientgetContactItems Method
Returns a list of Contacts within a collection. If ItemList is blank or Nothing, it returns everything (if it has itemids/filenames, then only those items are returned) If bGetData is true, then it will return the actual vcards for the contacts as well.

Namespace: ARPDev.DAVLIB
Assembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public DAVResult getContactItems(
	ref DAVContainer DAVFolder,
	ref List<string> ItemList = null,
	bool bGetData = false
)

Parameters

DAVFolder
Type: ARPDev.DAVLIBDAVContainer
DAVFolder representing Contacts Folder
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: DAVResult
DAVResult indicating success or failure. If successful, DAVFolder.Items is populated with the resulting data
Remarks
bGetData determines whether or not the VCards/VCalendar data should be returned
See Also