ParserSettings

ParserSettings(ILogger)

Initializes a new instance of the ParserSettings class with the logger.

public ParserSettings(ILogger logger)
Parameter Type Description
logger ILogger An instance of class that implements ILogger interface.

See Also


ParserSettings(OcrConnectorBase)

Initializes a new instance of the ParserSettings class with the OCR Connector.

public ParserSettings(OcrConnectorBase ocrConnector)
Parameter Type Description
ocrConnector OcrConnectorBase An instance of class that inherits OcrConnectorBase class to provide OCR functionality.

See Also


ParserSettings(ExternalResourceHandler)

Initializes a new instance of the ParserSettings class with the External Resource Handler.

public ParserSettings(ExternalResourceHandler externalResourceHandler)
Parameter Type Description
externalResourceHandler ExternalResourceHandler An instance of class that inherits ExternalResourceHandler class to provide the control of external resources loading.

See Also


ParserSettings(ILogger, OcrConnectorBase)

Initializes a new instance of the ParserSettings class with logger and OCR Connector.

public ParserSettings(ILogger logger, OcrConnectorBase ocrConnector)
Parameter Type Description
logger ILogger An instance of class that implements ILogger interface.
ocrConnector OcrConnectorBase An instance of class that inherits OcrConnectorBase class to provide OCR functionality.

See Also


ParserSettings(ILogger, OcrConnectorBase, ExternalResourceHandler)

Initializes a new instance of the ParserSettings class.

public ParserSettings(ILogger logger, OcrConnectorBase ocrConnector, 
    ExternalResourceHandler externalResourceHandler)
Parameter Type Description
logger ILogger An instance of class that implements ILogger interface.
ocrConnector OcrConnectorBase An instance of class that inherits OcrConnectorBase class to provide OCR functionality.
externalResourceHandler ExternalResourceHandler An instance of class that inherits ExternalResourceHandler class to provide the control of external resource loading.

See Also