ErrorOccurred

EventHub.ErrorOccurred event

तब होता है जब इंडेक्स ऑपरेशन के दौरान कोई त्रुटि होती है।

public event EventHandler<IndexErrorEventArgs> ErrorOccurred;

उदाहरण

उदाहरण दर्शाता है कि कैसे घटना का उपयोग करना है।

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

// इंडेक्स बनाना
Index index = new Index(indexFolder);

// घटना की सदस्यता लेना
index.Events.ErrorOccurred += (sender, args) =>
{
    Console.WriteLine(args.Message);
};

// निर्दिष्ट फ़ोल्डर से दस्तावेज़ अनुक्रमण
index.Add(documentsFolder);

// इंडेक्स में खोजा जा रहा है
SearchResult result = index.Search(query);

यह सभी देखें