GroupDocs.Search for .NET 25.11 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
SEARCHNET-3524Implement default text extractor for plain text file typesEnhancement
SEARCHNET-3522Fix error during text extraction with backup privilegesFix

Public API and Backward Incompatible Changes

Implement default text extractor for plain text file types

This improvement adds a plain text extractor by default for .log files.

Public API changes

None.

Use cases

None.

Fix error during text extraction with backup privileges

This fix resolves errors when extracting text with backup privileges using the Extractor class.

Public API changes

Property System.String TempFolder has been added to GroupDocs.Search.Common.ExtractorSettings class.

Use cases
Extractor extractor = new Extractor();
extractor.Settings.TempFolder = tempFolderPath;

ExtractionOptions options = new ExtractionOptions();
options.UseBackupPrivilege = true;

Document document = Document.CreateFromFile(protectedDocumentPath);
ExtractedData data = extractor.Extract(document, options);
...