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


In This Topic
    Message Property (FtpReply)
    In This Topic
    Gets the text following the last line of the full text returned by the FTP server without the reply code.
    Syntax
    'Declaration
     
    Public ReadOnly Property Message As String
    'Usage
     
    Dim instance As FtpReply
    Dim value As String
     
    value = instance.Message
    public string Message {get;}

    Property Value

    A string representing the last line of the full text returned by the FTP server without the reply code.
    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