Xceed .NET Libraries Documentation
FtpReplyType Enumeration


Xceed.Ftp Assembly > Xceed.Ftp Namespace : FtpReplyType Enumeration
Value representing the type of reply received from the FTP server in response to a command.
Syntax
'Declaration
 
Public Enum FtpReplyType 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
'Usage
 
Dim instance As FtpReplyType
Members
MemberValueDescription
Incomplete0More lines are expected therefore this reply is still incomplete. You should never receive such a reply, as this value is used internally.
Invalid6The format of the reply received from the FTP server was not recognized.
PermanentNegativeCompletion5The command was not accepted and the requested action did not take place. Any reply between 500 and 559 inclusively is a permanent negative completion reply.
PositiveCompletion2The requested action has successfully completed and a new request may be initiated. Any reply between 200 and 259 inclusively is a positive completion reply.
PositiveIntermediate3The command was accepted, but the requested action is being held in abeyance, pending receipt of further information. Another command specifying this information is expected by the FTP server. Any reply between 300 and 359 inclusively is a positive intermediate reply.
PositivePreliminary1The requested action is being initiated and another reply should be expected before proceeding with a new command. Any reply between 100 and 159 inclusively is a positive preliminary reply.
TransientNegativeCompletion4The command was not accepted and the requested action did not take place, but the error condition is not permanent and the action may be requested again once the problem is addressed. Any reply between 400 and 459 inclusively is a transient negative completion reply.
Remarks

For a list of specific reply codes, consult the System.Number property of the FtpReply class.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Xceed.Ftp.FtpReplyType

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

Reference

Xceed.Ftp Namespace