ErrorEventHandler Delegate
Represents the method that will handle the Error event of a FileSystemWatcher object.
Assembly: System (in System.dll)
Parameters
- sender
-
Type:
System::Object^
The source of the event.
- e
-
Type:
System.IO::ErrorEventArgs^
An ErrorEventArgs object that contains the event data.
When you create an ErrorEventHandler delegate, you identify the method that will handle the event. To associate the event with your event-handling method, add an instance of the delegate to the event. The event-handling method is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Handling and Raising Events.
The following code example shows how to create a FileSystemWatcher object to monitor file changes (creates, deletes, renames, changes) occurring on a disk drive. The example also shows how to properly receive error notifications.
Available since 1.1