using System; using Cpp2IlInjected; namespace System.Net.Sockets { /// Defines error codes for the class. // Token: 0x020002E0 RID: 736 [Token(Token = "0x20002E0")] public enum SocketError { /// The operation succeeded. // Token: 0x04000C0C RID: 3084 [Token(Token = "0x4000C0C")] Success, /// An unspecified error has occurred. // Token: 0x04000C0D RID: 3085 [Token(Token = "0x4000C0D")] SocketError = -1, /// A blocking call was canceled. // Token: 0x04000C0E RID: 3086 [Token(Token = "0x4000C0E")] Interrupted = 10004, /// An attempt was made to access a in a way that is forbidden by its access permissions. // Token: 0x04000C0F RID: 3087 [Token(Token = "0x4000C0F")] AccessDenied = 10013, /// An invalid pointer address was detected by the underlying socket provider. // Token: 0x04000C10 RID: 3088 [Token(Token = "0x4000C10")] Fault, /// An invalid argument was supplied to a member. // Token: 0x04000C11 RID: 3089 [Token(Token = "0x4000C11")] InvalidArgument = 10022, /// There are too many open sockets in the underlying socket provider. // Token: 0x04000C12 RID: 3090 [Token(Token = "0x4000C12")] TooManyOpenSockets = 10024, /// An operation on a nonblocking socket cannot be completed immediately. // Token: 0x04000C13 RID: 3091 [Token(Token = "0x4000C13")] WouldBlock = 10035, /// A blocking operation is in progress. // Token: 0x04000C14 RID: 3092 [Token(Token = "0x4000C14")] InProgress, /// The nonblocking already has an operation in progress. // Token: 0x04000C15 RID: 3093 [Token(Token = "0x4000C15")] AlreadyInProgress, /// A operation was attempted on a non-socket. // Token: 0x04000C16 RID: 3094 [Token(Token = "0x4000C16")] NotSocket, /// A required address was omitted from an operation on a . // Token: 0x04000C17 RID: 3095 [Token(Token = "0x4000C17")] DestinationAddressRequired, /// The datagram is too long. // Token: 0x04000C18 RID: 3096 [Token(Token = "0x4000C18")] MessageSize, /// The protocol type is incorrect for this . // Token: 0x04000C19 RID: 3097 [Token(Token = "0x4000C19")] ProtocolType, /// An unknown, invalid, or unsupported option or level was used with a . // Token: 0x04000C1A RID: 3098 [Token(Token = "0x4000C1A")] ProtocolOption, /// The protocol is not implemented or has not been configured. // Token: 0x04000C1B RID: 3099 [Token(Token = "0x4000C1B")] ProtocolNotSupported, /// The support for the specified socket type does not exist in this address family. // Token: 0x04000C1C RID: 3100 [Token(Token = "0x4000C1C")] SocketNotSupported, /// The address family is not supported by the protocol family. // Token: 0x04000C1D RID: 3101 [Token(Token = "0x4000C1D")] OperationNotSupported, /// The protocol family is not implemented or has not been configured. // Token: 0x04000C1E RID: 3102 [Token(Token = "0x4000C1E")] ProtocolFamilyNotSupported, /// The address family specified is not supported. This error is returned if the IPv6 address family was specified and the IPv6 stack is not installed on the local machine. This error is returned if the IPv4 address family was specified and the IPv4 stack is not installed on the local machine. // Token: 0x04000C1F RID: 3103 [Token(Token = "0x4000C1F")] AddressFamilyNotSupported, /// Only one use of an address is normally permitted. // Token: 0x04000C20 RID: 3104 [Token(Token = "0x4000C20")] AddressAlreadyInUse, /// The selected IP address is not valid in this context. // Token: 0x04000C21 RID: 3105 [Token(Token = "0x4000C21")] AddressNotAvailable, /// The network is not available. // Token: 0x04000C22 RID: 3106 [Token(Token = "0x4000C22")] NetworkDown, /// No route to the remote host exists. // Token: 0x04000C23 RID: 3107 [Token(Token = "0x4000C23")] NetworkUnreachable, /// The application tried to set on a connection that has already timed out. // Token: 0x04000C24 RID: 3108 [Token(Token = "0x4000C24")] NetworkReset, /// The connection was aborted by the .NET Framework or the underlying socket provider. // Token: 0x04000C25 RID: 3109 [Token(Token = "0x4000C25")] ConnectionAborted, /// The connection was reset by the remote peer. // Token: 0x04000C26 RID: 3110 [Token(Token = "0x4000C26")] ConnectionReset, /// No free buffer space is available for a operation. // Token: 0x04000C27 RID: 3111 [Token(Token = "0x4000C27")] NoBufferSpaceAvailable, /// The is already connected. // Token: 0x04000C28 RID: 3112 [Token(Token = "0x4000C28")] IsConnected, /// The application tried to send or receive data, and the is not connected. // Token: 0x04000C29 RID: 3113 [Token(Token = "0x4000C29")] NotConnected, /// A request to send or receive data was disallowed because the has already been closed. // Token: 0x04000C2A RID: 3114 [Token(Token = "0x4000C2A")] Shutdown, /// The connection attempt timed out, or the connected host has failed to respond. // Token: 0x04000C2B RID: 3115 [Token(Token = "0x4000C2B")] TimedOut = 10060, /// The remote host is actively refusing a connection. // Token: 0x04000C2C RID: 3116 [Token(Token = "0x4000C2C")] ConnectionRefused, /// The operation failed because the remote host is down. // Token: 0x04000C2D RID: 3117 [Token(Token = "0x4000C2D")] HostDown = 10064, /// There is no network route to the specified host. // Token: 0x04000C2E RID: 3118 [Token(Token = "0x4000C2E")] HostUnreachable, /// Too many processes are using the underlying socket provider. // Token: 0x04000C2F RID: 3119 [Token(Token = "0x4000C2F")] ProcessLimit = 10067, /// The network subsystem is unavailable. // Token: 0x04000C30 RID: 3120 [Token(Token = "0x4000C30")] SystemNotReady = 10091, /// The version of the underlying socket provider is out of range. // Token: 0x04000C31 RID: 3121 [Token(Token = "0x4000C31")] VersionNotSupported, /// The underlying socket provider has not been initialized. // Token: 0x04000C32 RID: 3122 [Token(Token = "0x4000C32")] NotInitialized, /// A graceful shutdown is in progress. // Token: 0x04000C33 RID: 3123 [Token(Token = "0x4000C33")] Disconnecting = 10101, /// The specified class was not found. // Token: 0x04000C34 RID: 3124 [Token(Token = "0x4000C34")] TypeNotFound = 10109, /// No such host is known. The name is not an official host name or alias. // Token: 0x04000C35 RID: 3125 [Token(Token = "0x4000C35")] HostNotFound = 11001, /// The name of the host could not be resolved. Try again later. // Token: 0x04000C36 RID: 3126 [Token(Token = "0x4000C36")] TryAgain, /// The error is unrecoverable or the requested database cannot be located. // Token: 0x04000C37 RID: 3127 [Token(Token = "0x4000C37")] NoRecovery, /// The requested name or IP address was not found on the name server. // Token: 0x04000C38 RID: 3128 [Token(Token = "0x4000C38")] NoData, /// The application has initiated an overlapped operation that cannot be completed immediately. // Token: 0x04000C39 RID: 3129 [Token(Token = "0x4000C39")] IOPending = 997, /// The overlapped operation was aborted due to the closure of the . // Token: 0x04000C3A RID: 3130 [Token(Token = "0x4000C3A")] OperationAborted = 995 } }