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