SetPollingInterval
Sets the number of milliseconds to wait before the OpenTextFaxServer resumes fax polling from the Fax server.
Member of namespace
OpenTextFaxServerSyntax
bool SetPollingInterval (int Milliseconds)
Parameters
- Milliseconds
- Type: int
Parameters
Milliseconds : The amount of time, in milliseconds, to wait before polling the fax server again. The default value is 2000 ms (2 seconds).Returns
False if the action is not called at the batch level. Otherwise, True.Level
Batch Level.Details
Sets the amount of time to wait before resuming fax polling from the server.If this action is not called, the default value of 2 seconds is used.
Include this action before a ImportFaxes() action.
- Example
SetServerName("myserver") SetUserID("myuser") SetUserPassword("mypassword") SetProtocol(4) SetPollingInterval(5000) Connect() ImportFaxes()