Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

161 lines
7.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Specifies the status codes returned for a File Transfer Protocol (FTP) operation.</summary>
// Token: 0x02000223 RID: 547
[Token(Token = "0x2000223")]
public enum FtpStatusCode
{
/// <summary>Included for completeness, this value is never returned by servers.</summary>
// Token: 0x04000793 RID: 1939
[Token(Token = "0x4000793")]
Undefined,
/// <summary>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.</summary>
// Token: 0x04000794 RID: 1940
[Token(Token = "0x4000794")]
RestartMarker = 110,
/// <summary>Specifies that the service is not available now; try your request later.</summary>
// Token: 0x04000795 RID: 1941
[Token(Token = "0x4000795")]
ServiceTemporarilyNotAvailable = 120,
/// <summary>Specifies that the data connection is already open and the requested transfer is starting.</summary>
// Token: 0x04000796 RID: 1942
[Token(Token = "0x4000796")]
DataAlreadyOpen = 125,
/// <summary>Specifies that the server is opening the data connection.</summary>
// Token: 0x04000797 RID: 1943
[Token(Token = "0x4000797")]
OpeningData = 150,
/// <summary>Specifies that the command completed successfully.</summary>
// Token: 0x04000798 RID: 1944
[Token(Token = "0x4000798")]
CommandOK = 200,
/// <summary>Specifies that the command is not implemented by the server because it is not needed.</summary>
// Token: 0x04000799 RID: 1945
[Token(Token = "0x4000799")]
CommandExtraneous = 202,
/// <summary>Specifies the status of a directory.</summary>
// Token: 0x0400079A RID: 1946
[Token(Token = "0x400079A")]
DirectoryStatus = 212,
/// <summary>Specifies the status of a file.</summary>
// Token: 0x0400079B RID: 1947
[Token(Token = "0x400079B")]
FileStatus,
/// <summary>Specifies the system type name using the system names published in the Assigned Numbers document published by the Internet Assigned Numbers Authority.</summary>
// Token: 0x0400079C RID: 1948
[Token(Token = "0x400079C")]
SystemType = 215,
/// <summary>Specifies that the server is ready for a user login operation.</summary>
// Token: 0x0400079D RID: 1949
[Token(Token = "0x400079D")]
SendUserCommand = 220,
/// <summary>Specifies that the server is closing the control connection.</summary>
// Token: 0x0400079E RID: 1950
[Token(Token = "0x400079E")]
ClosingControl,
/// <summary>Specifies that the server is closing the data connection and that the requested file action was successful.</summary>
// Token: 0x0400079F RID: 1951
[Token(Token = "0x400079F")]
ClosingData = 226,
/// <summary>Specifies that the server is entering passive mode.</summary>
// Token: 0x040007A0 RID: 1952
[Token(Token = "0x40007A0")]
EnteringPassive,
/// <summary>Specifies that the user is logged in and can send commands.</summary>
// Token: 0x040007A1 RID: 1953
[Token(Token = "0x40007A1")]
LoggedInProceed = 230,
/// <summary>Specifies that the server accepts the authentication mechanism specified by the client, and the exchange of security data is complete.</summary>
// Token: 0x040007A2 RID: 1954
[Token(Token = "0x40007A2")]
ServerWantsSecureSession = 234,
/// <summary>Specifies that the requested file action completed successfully.</summary>
// Token: 0x040007A3 RID: 1955
[Token(Token = "0x40007A3")]
FileActionOK = 250,
/// <summary>Specifies that the requested path name was created.</summary>
// Token: 0x040007A4 RID: 1956
[Token(Token = "0x40007A4")]
PathnameCreated = 257,
/// <summary>Specifies that the server expects a password to be supplied.</summary>
// Token: 0x040007A5 RID: 1957
[Token(Token = "0x40007A5")]
SendPasswordCommand = 331,
/// <summary>Specifies that the server requires a login account to be supplied.</summary>
// Token: 0x040007A6 RID: 1958
[Token(Token = "0x40007A6")]
NeedLoginAccount,
/// <summary>Specifies that the requested file action requires additional information.</summary>
// Token: 0x040007A7 RID: 1959
[Token(Token = "0x40007A7")]
FileCommandPending = 350,
/// <summary>Specifies that the service is not available.</summary>
// Token: 0x040007A8 RID: 1960
[Token(Token = "0x40007A8")]
ServiceNotAvailable = 421,
/// <summary>Specifies that the data connection cannot be opened.</summary>
// Token: 0x040007A9 RID: 1961
[Token(Token = "0x40007A9")]
CantOpenData = 425,
/// <summary>Specifies that the connection has been closed.</summary>
// Token: 0x040007AA RID: 1962
[Token(Token = "0x40007AA")]
ConnectionClosed,
/// <summary>Specifies that the requested action cannot be performed on the specified file because the file is not available or is being used.</summary>
// Token: 0x040007AB RID: 1963
[Token(Token = "0x40007AB")]
ActionNotTakenFileUnavailableOrBusy = 450,
/// <summary>Specifies that an error occurred that prevented the request action from completing.</summary>
// Token: 0x040007AC RID: 1964
[Token(Token = "0x40007AC")]
ActionAbortedLocalProcessingError,
/// <summary>Specifies that the requested action cannot be performed because there is not enough space on the server.</summary>
// Token: 0x040007AD RID: 1965
[Token(Token = "0x40007AD")]
ActionNotTakenInsufficientSpace,
/// <summary>Specifies that the command has a syntax error or is not a command recognized by the server.</summary>
// Token: 0x040007AE RID: 1966
[Token(Token = "0x40007AE")]
CommandSyntaxError = 500,
/// <summary>Specifies that one or more command arguments has a syntax error.</summary>
// Token: 0x040007AF RID: 1967
[Token(Token = "0x40007AF")]
ArgumentSyntaxError,
/// <summary>Specifies that the command is not implemented by the FTP server.</summary>
// Token: 0x040007B0 RID: 1968
[Token(Token = "0x40007B0")]
CommandNotImplemented,
/// <summary>Specifies that the sequence of commands is not in the correct order.</summary>
// Token: 0x040007B1 RID: 1969
[Token(Token = "0x40007B1")]
BadCommandSequence,
/// <summary>Specifies that login information must be sent to the server.</summary>
// Token: 0x040007B2 RID: 1970
[Token(Token = "0x40007B2")]
NotLoggedIn = 530,
/// <summary>Specifies that a user account on the server is required.</summary>
// Token: 0x040007B3 RID: 1971
[Token(Token = "0x40007B3")]
AccountNeeded = 532,
/// <summary>Specifies that the requested action cannot be performed on the specified file because the file is not available.</summary>
// Token: 0x040007B4 RID: 1972
[Token(Token = "0x40007B4")]
ActionNotTakenFileUnavailable = 550,
/// <summary>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</summary>
// Token: 0x040007B5 RID: 1973
[Token(Token = "0x40007B5")]
ActionAbortedUnknownPageType,
/// <summary>Specifies that the requested action cannot be performed.</summary>
// Token: 0x040007B6 RID: 1974
[Token(Token = "0x40007B6")]
FileActionAborted,
/// <summary>Specifies that the requested action cannot be performed on the specified file.</summary>
// Token: 0x040007B7 RID: 1975
[Token(Token = "0x40007B7")]
ActionNotTakenFilenameNotAllowed
}
}