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