Xceed .NET Libraries Documentation
Type Property (FtpReply)


Xceed.Ftp Assembly > Xceed.Ftp Namespace > FtpReply Class : Type Property
Gets a value representing the type of reply received from the FTP server.
Syntax
'Declaration
 
Public ReadOnly Property Type As FtpReplyType
'Usage
 
Dim instance As FtpReply
Dim value As FtpReplyType
 
value = instance.Type
public FtpReplyType Type {get;}

Property Value

A FtpReplyType representing the type of reply received from the FTP server.
Remarks

The following table provides a list of the types of reply codes that can be returned by an FTP server.

Incomplete More lines are expected therefore this reply is still incomplete. You should never receive such a reply, as this value is used internally.
PositivePreliminary The 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.
PositiveCompletion The requested action has successfully completed and a new request may be initiated. Any reply between 200 and 259 inclusively is a positive completion reply.
PositiveIntermediate The 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.
TransientNegativeCompletion The 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.
PermanentNegativeCompletion The 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.
Invalid The format of the reply received from the FTP server was not recognized.

For a list of specific reply codes, consult the ReplyCode property.

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

FtpReply Class
FtpReply Members