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.

Definition

Namespace: OpenDiscoverSDK.Interfaces.Extractors
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2026.2.6.0 (2026.02.06)
C#
void 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