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