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