Xceed .NET Libraries Documentation
ItemException Event


Xceed.FileSystem Assembly > Xceed.FileSystem Namespace > FileSystemEvents Class : ItemException Event
Raised when an exception is caught during the processing of a FileSystemItem object, allowing the handler to decide the action to take.
Syntax
'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.

PropertyDescription
Gets or sets the action taken when an exception is thrown during the processing of a FileSystemItem object.  
Gets or sets the current FileSystemItem object being processed. (Inherited from Xceed.FileSystem.FileSystemEventArgs)
Gets or sets the exception that was thrown.  
Gets or sets the destination FileSystemItem object. (Inherited from )
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