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