GetIndexingReports

Index.GetIndexingReports method

Gets the reports on indexing operations.

public IndexingReport[] GetIndexingReports()

Return Value

The indexing reports.

Examples

The example demonstrates how to get indexing reports.

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";

Index index = new Index(indexFolder); // Creating index in the specified folder
index.Add(documentsFolder); // Indexing documents from the specified folder

IndexingReport[] reports = index.GetIndexingReports(); // Getting indexing reports

See Also