Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / FtpReply Class / Lines Property


In This Topic
    Lines Property (FtpReply)
    In This Topic
    Gets the lines returned by the FTP server as a reply to a command.
    Syntax
    'Declaration
     
    Public ReadOnly Property Lines As StringList
    'Usage
     
    Dim instance As FtpReply
    Dim value As StringList
     
    value = instance.Lines
    public StringList Lines {get;}

    Property Value

    A StringList containing a list of all the lines, including the Message returned by the FTP server as a reply to a command.
    Remarks

    The lines of the reply are the custom lines returned by the FTP server. For example, the "welcome" message. The Message is the text following the last line of the full text returned by the FTP server. For example:

    
    220-Welcome! 
    Thank you for using Xceed FTP for .NET
    220 Have fun! 
    
    "Have fun!" is the Message.

    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