RedactorSettings class

RedactorSettings class

Represents redaction settings, allowing to customize the redaction process.

The RedactorSettings type exposes the following members:

Constructors

Constructor Description
__init__(self) Initializes a new instance of the RedactorSettings class.
__init__(self, logger) Initializes a new instance of the RedactorSettings class with a given ILogger instance.
__init__(self, callback) Initializes a new instance of the RedactorSettings class with a given IRedactionCallback instance.
__init__(self, ocr_connector) Initializes a new instance of the RedactorSettings class with a given IOcrConnector instance.
__init__(self, logger, callback) Initializes a new instance of the RedactorSettings class with given ILogger and IRedactionCallback instances.
__init__(self, logger, callback, ocr_connector) Initializes a new instance of the RedactorSettings class with given ILogger, IRedactionCallback and IOcrConnector instances.

Properties

Property Description
logger Gets or sets an instance of a class, implementing ILogger, that is used for logging events and errors.
redaction_callback Gets or sets an instance of a class, implementing IRedactionCallback.
ocr_connector Gets or sets an instance of a class, implementing IOcrConnector interface.

Remarks

Learn more | | | |

See Also