Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / FtpListingParser Class / ParseLine Method
The listing line received from the FTP server.


In This Topic
    ParseLine Method (FtpListingParser)
    In This Topic
    Parses the specified listing line received from the FTP server.
    Syntax
    'Declaration
     
    Public MustOverride Function ParseLine( _
       ByVal line As String _
    ) As FtpItemInfo
    'Usage
     
    Dim instance As FtpListingParser
    Dim line As String
    Dim value As FtpItemInfo
     
    value = instance.ParseLine(line)
    public abstract FtpItemInfo ParseLine( 
       string line
    )

    Parameters

    line
    The listing line received from the FTP server.

    Return Value

    A reference to an FtpItemInfo object containing the information that was parsed from the listing line received from the FTP server. Can be FtpItemInfo.Empty to indicate that the listing line was recognized but more information is required (for example, VMS listings are on 2 lines).
    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