using System; using Cpp2IlInjected; namespace System.Net { /// Specifies the status codes returned for a File Transfer Protocol (FTP) operation. // Token: 0x0200021F RID: 543 [Token(Token = "0x200021F")] public enum FtpStatusCode { /// Included for completeness, this value is never returned by servers. // Token: 0x04000786 RID: 1926 [Token(Token = "0x4000786")] Undefined, /// Specifies that the response contains a restart marker reply. The text of the description that accompanies this status contains the user data stream marker and the server marker. // Token: 0x04000787 RID: 1927 [Token(Token = "0x4000787")] RestartMarker = 110, /// Specifies that the service is not available now; try your request later. // Token: 0x04000788 RID: 1928 [Token(Token = "0x4000788")] ServiceTemporarilyNotAvailable = 120, /// Specifies that the data connection is already open and the requested transfer is starting. // Token: 0x04000789 RID: 1929 [Token(Token = "0x4000789")] DataAlreadyOpen = 125, /// Specifies that the server is opening the data connection. // Token: 0x0400078A RID: 1930 [Token(Token = "0x400078A")] OpeningData = 150, /// Specifies that the command completed successfully. // Token: 0x0400078B RID: 1931 [Token(Token = "0x400078B")] CommandOK = 200, /// Specifies that the command is not implemented by the server because it is not needed. // Token: 0x0400078C RID: 1932 [Token(Token = "0x400078C")] CommandExtraneous = 202, /// Specifies the status of a directory. // Token: 0x0400078D RID: 1933 [Token(Token = "0x400078D")] DirectoryStatus = 212, /// Specifies the status of a file. // Token: 0x0400078E RID: 1934 [Token(Token = "0x400078E")] FileStatus, /// Specifies the system type name using the system names published in the Assigned Numbers document published by the Internet Assigned Numbers Authority. // Token: 0x0400078F RID: 1935 [Token(Token = "0x400078F")] SystemType = 215, /// Specifies that the server is ready for a user login operation. // Token: 0x04000790 RID: 1936 [Token(Token = "0x4000790")] SendUserCommand = 220, /// Specifies that the server is closing the control connection. // Token: 0x04000791 RID: 1937 [Token(Token = "0x4000791")] ClosingControl, /// Specifies that the server is closing the data connection and that the requested file action was successful. // Token: 0x04000792 RID: 1938 [Token(Token = "0x4000792")] ClosingData = 226, /// Specifies that the server is entering passive mode. // Token: 0x04000793 RID: 1939 [Token(Token = "0x4000793")] EnteringPassive, /// Specifies that the user is logged in and can send commands. // Token: 0x04000794 RID: 1940 [Token(Token = "0x4000794")] LoggedInProceed = 230, /// Specifies that the server accepts the authentication mechanism specified by the client, and the exchange of security data is complete. // Token: 0x04000795 RID: 1941 [Token(Token = "0x4000795")] ServerWantsSecureSession = 234, /// Specifies that the requested file action completed successfully. // Token: 0x04000796 RID: 1942 [Token(Token = "0x4000796")] FileActionOK = 250, /// Specifies that the requested path name was created. // Token: 0x04000797 RID: 1943 [Token(Token = "0x4000797")] PathnameCreated = 257, /// Specifies that the server expects a password to be supplied. // Token: 0x04000798 RID: 1944 [Token(Token = "0x4000798")] SendPasswordCommand = 331, /// Specifies that the server requires a login account to be supplied. // Token: 0x04000799 RID: 1945 [Token(Token = "0x4000799")] NeedLoginAccount, /// Specifies that the requested file action requires additional information. // Token: 0x0400079A RID: 1946 [Token(Token = "0x400079A")] FileCommandPending = 350, /// Specifies that the service is not available. // Token: 0x0400079B RID: 1947 [Token(Token = "0x400079B")] ServiceNotAvailable = 421, /// Specifies that the data connection cannot be opened. // Token: 0x0400079C RID: 1948 [Token(Token = "0x400079C")] CantOpenData = 425, /// Specifies that the connection has been closed. // Token: 0x0400079D RID: 1949 [Token(Token = "0x400079D")] ConnectionClosed, /// Specifies that the requested action cannot be performed on the specified file because the file is not available or is being used. // Token: 0x0400079E RID: 1950 [Token(Token = "0x400079E")] ActionNotTakenFileUnavailableOrBusy = 450, /// Specifies that an error occurred that prevented the request action from completing. // Token: 0x0400079F RID: 1951 [Token(Token = "0x400079F")] ActionAbortedLocalProcessingError, /// Specifies that the requested action cannot be performed because there is not enough space on the server. // Token: 0x040007A0 RID: 1952 [Token(Token = "0x40007A0")] ActionNotTakenInsufficientSpace, /// Specifies that the command has a syntax error or is not a command recognized by the server. // Token: 0x040007A1 RID: 1953 [Token(Token = "0x40007A1")] CommandSyntaxError = 500, /// Specifies that one or more command arguments has a syntax error. // Token: 0x040007A2 RID: 1954 [Token(Token = "0x40007A2")] ArgumentSyntaxError, /// Specifies that the command is not implemented by the FTP server. // Token: 0x040007A3 RID: 1955 [Token(Token = "0x40007A3")] CommandNotImplemented, /// Specifies that the sequence of commands is not in the correct order. // Token: 0x040007A4 RID: 1956 [Token(Token = "0x40007A4")] BadCommandSequence, /// Specifies that login information must be sent to the server. // Token: 0x040007A5 RID: 1957 [Token(Token = "0x40007A5")] NotLoggedIn = 530, /// Specifies that a user account on the server is required. // Token: 0x040007A6 RID: 1958 [Token(Token = "0x40007A6")] AccountNeeded = 532, /// Specifies that the requested action cannot be performed on the specified file because the file is not available. // Token: 0x040007A7 RID: 1959 [Token(Token = "0x40007A7")] ActionNotTakenFileUnavailable = 550, /// Specifies that the requested action cannot be taken because the specified page type is unknown. Page types are described in RFC 959 Section 3.1.2.3 // Token: 0x040007A8 RID: 1960 [Token(Token = "0x40007A8")] ActionAbortedUnknownPageType, /// Specifies that the requested action cannot be performed. // Token: 0x040007A9 RID: 1961 [Token(Token = "0x40007A9")] FileActionAborted, /// Specifies that the requested action cannot be performed on the specified file. // Token: 0x040007AA RID: 1962 [Token(Token = "0x40007AA")] ActionNotTakenFilenameNotAllowed } }