Click or drag to resize
DAVClientPollFolderForChanges Method
Polls a dav folder for changes and returns when it either expires or there is a change

Namespace: ARPDev.DAVLIB
Assembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public DAVPollState PollFolderForChanges(
	ref DAVContainer DAVFolder,
	ref bool bKeepListening,
	DAVContainerType _DAVFolderType,
	int intervalInMilliSeconds,
	int expirationInSeconds
)

Parameters

DAVFolder
Type: ARPDev.DAVLIBDAVContainer
DAVContainer to monitor
bKeepListening
Type: SystemBoolean
variable to denote whether to listen or not (passed by reference so it can be cancelled)
_DAVFolderType
Type: ARPDev.DAVLIBDAVContainerType
Type of Folder to monitor
intervalInMilliSeconds
Type: SystemInt32
Number of milliseconds to wait between successive change tests/polls
expirationInSeconds
Type: SystemInt32
number of seconds that this request should wait before expiring

Return Value

Type: DAVPollState
PollState value indicating whether or not a change occured, an error, or it expired
Remarks