mscorlib(4.0.0.0) API with additions
FtpStatusCode.cs
1 namespace System.Net
2 {
4  public enum FtpStatusCode
5  {
7  Undefined = 0,
9  RestartMarker = 110,
13  DataAlreadyOpen = 125,
15  OpeningData = 150,
17  CommandOK = 200,
19  CommandExtraneous = 202,
21  DirectoryStatus = 212,
23  FileStatus = 213,
25  SystemType = 215,
27  SendUserCommand = 220,
29  ClosingControl = 221,
31  ClosingData = 226,
33  EnteringPassive = 227,
35  LoggedInProceed = 230,
39  FileActionOK = 250,
41  PathnameCreated = 257,
43  SendPasswordCommand = 331,
45  NeedLoginAccount = 332,
47  FileCommandPending = 350,
49  ServiceNotAvailable = 421,
51  CantOpenData = 425,
53  ConnectionClosed = 426,
61  CommandSyntaxError = 500,
63  ArgumentSyntaxError = 501,
67  BadCommandSequence = 503,
69  NotLoggedIn = 530,
71  AccountNeeded = 532,
77  FileActionAborted = 552,
80  }
81 }
Specifies that the user is logged in and can send commands.
Specifies that the requested action cannot be taken because the specified page type is unknown....
Specifies that the requested action cannot be performed because there is not enough space on the serv...
Specifies that one or more command arguments has a syntax error.
Specifies that the data connection cannot be opened.
Specifies that a user account on the server is required.
Specifies that the server requires a login account to be supplied.
Specifies the status of a file.
Specifies that the sequence of commands is not in the correct order.
Specifies that the command completed successfully.
Specifies that the command has a syntax error or is not a command recognized by the server.
Specifies that the command is not implemented by the FTP server.
Specifies the system type name using the system names published in the Assigned Numbers document publ...
Specifies that the server is opening the data connection.
Specifies that the requested path name was created.
Specifies that the requested action cannot be performed.
Specifies that the service is not available.
Specifies that the connection has been closed.
Specifies that the requested action cannot be performed on the specified file because the file is not...
Specifies that the command is not implemented by the server because it is not needed.
Specifies that the server is closing the control connection.
Specifies that the service is not available now; try your request later.
FtpStatusCode
Specifies the status codes returned for a File Transfer Protocol (FTP) operation.
Definition: FtpStatusCode.cs:4
Specifies that the server is entering passive mode.
Specifies that the requested file action completed successfully.
Specifies the status of a directory.
Specifies that the requested file action requires additional information.
Specifies that the server accepts the authentication mechanism specified by the client,...
Specifies that the data connection is already open and the requested transfer is starting.
Specifies that an error occurred that prevented the request action from completing.
Specifies that the response contains a restart marker reply. The text of the description that accompa...
Specifies that the server expects a password to be supplied.
Specifies that the server is ready for a user login operation.
Specifies that the server is closing the data connection and that the requested file action was succe...
Specifies that the requested action cannot be performed on the specified file because the file is not...
Specifies that the requested action cannot be performed on the specified file.