Xceed .NET Libraries Documentation
Xceed.FileSystem Assembly / Xceed.FileSystem Namespace / FileSystemEvents Class / ItemException Event


In This Topic
    ItemException Event
    In This Topic
    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 Xceed.FileSystem.FileSystemEventArgs)
    Opaque data that is sent back to the event handler. (Inherited from Xceed.FileSystem.FileSystemEventArgs)
    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