GetSearchReports

Index.GetSearchReports method

Λαμβάνει τις αναφορές για τις λειτουργίες αναζήτησης.

public SearchReport[] GetSearchReports()

Επιστρεφόμενη Αξία

Οι αναφορές αναζήτησης.

Παραδείγματα

Το παράδειγμα δείχνει πώς να λαμβάνετε αναφορές αναζήτησης.

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
string query1 = "Einstein";
string query2 = "Newton";

Index index = new Index(indexFolder); // Δημιουργία ευρετηρίου στον καθορισμένο φάκελο
index.Add(documentsFolder); // Δημιουργία ευρετηρίου εγγράφων από τον καθορισμένο φάκελο

SearchResult result1 = index.Search(query1); // Αναζήτηση
SearchResult result2 = index.Search(query2);
SearchResult result3 = index.Search(query1 + " & " + query2);

SearchReport[] reports = index.GetSearchReports(); // Λήψη αναφορών αναζήτησης

Δείτε επίσης