'Declaration Public Event ItemException As ItemExceptionEventHandler
'Usage Dim instance As FileSystemEvents Dim handler As ItemExceptionEventHandler AddHandler instance.ItemException, handler
public event ItemExceptionEventHandler ItemException
Event Data
The event handler receives an argument of type ItemExceptionEventArgs containing data related to this event. The following ItemExceptionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Action | Gets or sets the action taken when an exception is thrown during the processing of a FileSystemItem object. |
CurrentItem | Gets or sets the current FileSystemItem object being processed. (Inherited from Xceed.FileSystem.FileSystemEventArgs) |
Exception | Gets or sets the exception that was thrown. |
TargetItem | Gets or sets the destination FileSystemItem object. (Inherited from ) |
UserData | Opaque data that is sent back to the event handler. (Inherited from ) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also