GroupDocs.Search for .NET GroupDocs team is pleased to announce the monthly release of GroupDocs.Search for .NET 18.6. Using the latest version, you can now break indexing operation manually. Furthermore, obsolete Relevance property is removed from the DetailResultInfo method and ImportDictionary and ExportDictonary methods are added to index dictionaries. We would recommend you to install and use the latest version of API.

Break Indexing Operation ManuallyUsing GroupDocs.Search API you can break indexing operation manually. The break is not instantaneous and in cases of indexing large documents, the breaking can take about a second. Following is the code snippet to break indexing operation manually:

string folderForIndex = "c:\\MyIndex\\";
string folderWithDocuments = "c:\\MyDocuments\\";

//Creating index
Index index = new Index(folderForIndex);

//Subscribing on Operation Finished event
index.OperationFinished += index_OperationFinished;

//Indexing selected folder asynchronously
index.AddToIndexAsync(folderWithDocuments);

//Breaking indexing
index.Break(); 

Added ImportDictionary and ExportDictionary methods to index dictionariesIn the latest version of API, Import and Export methods’ names are updated to ImportDictonaires and ExportDictionaries.

Removed obsolete Relevance property from DetailedResultInfoObsolete property GroupDocs.Search.DetailedResultInfo.Relevance is removed from DetailResultInfo in version 18.6 of GroupDocs.Search for .NET API.

Available Channels and ResourcesHere are a few channels and resources for you to download, try, learn and get technical support on GroupDocs.Search: