SearchPhaseCompleted
EventHub.SearchPhaseCompleted event
Происходит после завершения фазы поиска.
public event EventHandler<SearchPhaseEventArgs> SearchPhaseCompleted;
Примеры
В примере показано, как использовать событие.
string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
// Создание индекса
Index index = new Index(indexFolder);
// Индексация документов из указанной папки
index.Add(documentsFolder);
// Подписка на событие
index.Events.SearchPhaseCompleted += (sender, args) =>
{
Console.WriteLine("Search phase: " + args.SearchPhase);
Console.WriteLine("Words: " + args.Words.Length);
};
SearchOptions options = new SearchOptions();
options.UseSynonymSearch = true;
options.UseWordFormsSearch = true;
options.FuzzySearch.Enabled = true;
options.UseHomophoneSearch = true;
SearchResult result = index.Search("Einstein", options);
Смотрите также
- class SearchPhaseEventArgs
- class EventHub
- пространство имен GroupDocs.Search.Events
- сборка GroupDocs.Search