FileListSearchExceptionOccurred Event |
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.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax 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);
}
member SearchExceptionOccurred : IEvent<EventHandler<SearchExceptionEventArgs>,
SearchExceptionEventArgs>
Value
Type:
SystemEventHandlerSearchExceptionEventArgsSee Also