GroupDocs.Search for .NET 26.8 Release Notes
This page contains release notes for GroupDocs.Search for .NET 26.8
Full List of Issues Covering all Changes in this Release
| Key | Summary | Category |
|---|---|---|
| SEARCHNET-3624 | Implement fast text extractor for HTML documents | Improvement |
Public API and Backward Incompatible Changes
Implement fast text extractor for HTML documents
This improvement introduces a new, fast extractor for extracting text from HTML and XHTML documents. This extractor, in addition to text, extracts embedded images encoded in Base64.
Public API changes
None.
Use cases
The following example demonstrates how to add documents to the index.
string indexFolder = @"c:\MyIndex\"; // Specify path to the index folder
string documentsFolder = @"c:\MyHtmlDocuments\"; // Specify the path to a folder containing documents to search
Index index = new Index(indexFolder); // Creating an index in the specified folder
index.Add(documentsFolder); // Synchronous indexing documents from the specified folder