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