GroupDocs.Search for .NET 26.8 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
SEARCHNET-3624Implement fast text extractor for HTML documentsImprovement

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