SearchPhaseCompleted
EventHub.SearchPhaseCompleted event
Arama aşaması tamamlandığında gerçekleşir.
public event EventHandler<SearchPhaseEventArgs> SearchPhaseCompleted;
Örnekler
Örnek, olayın nasıl kullanılacağını gösterir.
string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
// Bir dizin oluşturma
Index index = new Index(indexFolder);
// Belgeleri belirtilen klasörden indeksleme
index.Add(documentsFolder);
// Etkinliğe abone oluyoruz
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);
Ayrıca bakınız
- class SearchPhaseEventArgs
- class EventHub
- ad alanı GroupDocs.Search.Events
- toplantı GroupDocs.Search