This event is fired everytime an exception occurs when a single item is processed during the search
process. It is possible to handle or ignore the exception and mark this in the SearchExceptionEventArgs
If e.g. the exception is permanent and is left unhandled the search will cancel, a SearchCompleted event
will immediately follow which passes the Exception in the event args again, so it can be finally handled.
| C# | Visual Basic | Visual C++ |
public event EventHandler<SearchExceptionEventArgs> SearchExceptionOccurred
Public Event SearchExceptionOccurred As EventHandler(Of SearchExceptionEventArgs)
public: event EventHandler<SearchExceptionEventArgs^>^ SearchExceptionOccurred { void add (EventHandler<SearchExceptionEventArgs^>^ value); void remove (EventHandler<SearchExceptionEventArgs^>^ value); }