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.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic DAVResult getContactItems(
ref DAVContainer DAVFolder,
ref List<string> ItemList = null,
bool bGetData = false
)
Public Function getContactItems (
ByRef DAVFolder As DAVContainer,
Optional ByRef ItemList As List(Of String) = Nothing,
Optional bGetData As Boolean = false
) As DAVResult
public:
DAVResult getContactItems(
DAVContainer^% DAVFolder,
List<String^>^% ItemList = nullptr,
bool bGetData = false
)
member getContactItems :
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
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:
DAVResultDAVResult indicating success or failure. If successful, DAVFolder.Items is populated with the resulting data
RemarksbGetData determines whether or not the VCards/VCalendar data should be returned
See Also