ContinueOnFaxImportError
Specifies whether the batch should abort if there is an error importing a fax.
Member of namespace
OpenTextFaxServerSyntax
bool ContinueOnFaxImportError (bool Continue)
Parameters
- Continue
- Type: bool
Parameters
A boolean value specifying whether or not the batch should abort if there is an error importing a fax.Returns
Always True.Level
Any level.Details
Sets a boolean value specifying whether or not the batch should abort if there is an error importing a fax. When the parameter is set to True the batch finishes with Pending status, and contains all faxes that where imported successfully, up to the last one that failed to be imported.If ContinueOnFaxImportError is never called, the ImportFaxes action continue processing after an error. Call ContinueOnFaxImportError(False) to stop ingestion of faxes after an error.
Include this action before the Connect() action.
- Example
ContinueOnFaxImportError(true) SetNumberOfRetries(3) SetServerName("myserver") SetWindowsAuthentication(True) SetProtocol(4) Connect() ImportFaxes()