RedactorSettings

RedactorSettings()

Initializes a new instance of the RedactorSettings class.

public RedactorSettings()

See Also


RedactorSettings(ILogger)

Initializes a new instance of the RedactorSettings class with a given ILogger instance.

public RedactorSettings(ILogger logger)
Parameter Type Description
logger ILogger An instance of a class, implementing ILogger interface

See Also


RedactorSettings(IRedactionCallback)

Initializes a new instance of the RedactorSettings class with a given IRedactionCallback instance.

public RedactorSettings(IRedactionCallback callback)
Parameter Type Description
callback IRedactionCallback An instance of a class, implementing IRedactionCallbck interface

See Also


RedactorSettings(IOcrConnector)

Initializes a new instance of the RedactorSettings class with a given IOcrConnector instance.

public RedactorSettings(IOcrConnector ocrConnector)
Parameter Type Description
ocrConnector IOcrConnector A valid implementation of IOcrConnector interface

See Also


RedactorSettings(ILogger, IRedactionCallback)

Initializes a new instance of the RedactorSettings class with given ILogger and IRedactionCallback instances.

public RedactorSettings(ILogger logger, IRedactionCallback callback)
Parameter Type Description
logger ILogger An instance of a class, implementing ILogger interface
callback IRedactionCallback An instance of a class, implementing IRedactionCallbck interface

See Also


RedactorSettings(ILogger, IRedactionCallback, IOcrConnector)

Initializes a new instance of the RedactorSettings class with given ILogger, IRedactionCallback and IOcrConnector instances.

public RedactorSettings(ILogger logger, IRedactionCallback callback, IOcrConnector ocrConnector)
Parameter Type Description
logger ILogger An instance of a class, implementing ILogger interface
callback IRedactionCallback An instance of a class, implementing IRedactionCallbck interface
ocrConnector IOcrConnector An instance of IOcrConnector interface implementation. Can be null

See Also