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