IContentExtractorOverrideContentExtractionSettings Method |
Allows for overriding the
ContentExtractionSettings object used by a IContentExtractor instance that was returned by a call to
OpenDiscoverSDK.ContentExtractorFactory.GetContentExtractor. See remarks for limitations.
Namespace: OpenDiscoverSDK.Interfaces.ExtractorsAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntaxvoid OverrideContentExtractionSettings(
ContentExtractionSettings settings
)
Parameters
- settings ContentExtractionSettings
-
New ContentExtractionSettings object to override the original one passed into a call to OpenDiscoverSDK.ContentExtractorFactory.GetContentExtractor
method. See remarks for limitations.
Remarks
In order to override the original
ContentExtractionSettings object, this method must be called before any of the IContentExtractor
derived interfaces are used to call one of their ExtractContent methods. The ExtractContent methods (e.g.,
ExtractContent(String))
use the property values set in the ContentExtractionSettings object.
See Also