'Declaration Public Event PathException As PathExceptionEventHandler
'Usage Dim instance As FileSystemEvents Dim handler As PathExceptionEventHandler AddHandler instance.PathException, handler
public event PathExceptionEventHandler PathException
Event Data
The event handler receives an argument of type PathExceptionEventArgs containing data related to this event. The following PathExceptionEventArgs 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. (Inherited from Xceed.FileSystem.ItemExceptionEventArgs) |
CurrentItem | Gets or sets the current FileSystemItem object being processed. (Inherited from ) |
Exception | Gets or sets the exception that was thrown. (Inherited from ) |
FileSystemType | Gets the FileSystem type that was involved when the exception was thrown. |
Path | Gets or sets the path/file name that caused an exception to be thrown. |
TargetItem | Gets or sets the destination FileSystemItem object. (Inherited from ) |
UserData | Gets or sets the opaque data that will be sent back to the event handler whenever an event is raised. (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