Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / FtpListingParserList Class / ParsingListingLine Event


In This Topic
    ParsingListingLine Event (FtpListingParserList)
    In This Topic
    Raised for each folder listing line sent by the FTP server and allows you to manually parse the lines.
    Syntax
    '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.

    PropertyDescription
    Gets an FtpItemInfo object representing the listing information of an FTP item.  
    Gets the listing line which was returned by the FTP server and used to create the Item.  
    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