GroupDocs.Search for .NET 25.11 Release Notes
This page contains release notes for GroupDocs.Search for .NET 25.11
Full List of Issues Covering all Changes in this Release
| Key | Summary | Category |
|---|---|---|
| SEARCHNET-3524 | Implement default text extractor for plain text file types | Enhancement |
| SEARCHNET-3522 | Fix error during text extraction with backup privileges | Fix |
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);
...