'Declaration Public Event ParsingListingLine As ParsingListingLineEventHandler
'Usage Dim instance As FtpListingParserList Dim handler As ParsingListingLineEventHandler AddHandler instance.ParsingListingLine, handler
public event ParsingListingLineEventHandler ParsingListingLine
Event Data
The event handler receives an argument of type ParsingListingLineEventArgs containing data related to this event. The following ParsingListingLineEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | Gets an FtpItemInfo object representing the listing information of an FTP item. |
Line | Gets the listing line which was returned by the FTP server and used to create the Item. |
Valid | Gets or sets a boolean value indicating if the listing line returned by the FTP server was valid. |
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