Enum FluxerCloseCode
WebSocket close codes specific to the Fluxer Gateway protocol. These codes indicate why a gateway connection was closed.
public enum FluxerCloseCode
Fields
AlreadyAuthenticated = 4005An authentication payload was sent after already authenticating.
AuthenticationFailed = 4004The authentication token is invalid.
DecodeError = 4002An invalid payload was sent that could not be decoded.
DisallowedIntents = 4014Disallowed gateway intents were specified (requires verification/approval).
InvalidApiVersion = 4012An invalid API version was specified.
InvalidIntents = 4013Invalid gateway intents were specified.
InvalidSequence = 4007The sequence number sent in a RESUME packet was invalid.
InvalidShard = 4010An invalid shard was specified when connecting.
NotAuthenticated = 4003A payload was sent before authenticating with the gateway.
RateLimited = 4008Payloads are being sent too quickly (rate limited).
SessionTimeout = 4009The session timed out. A new session should be created.
ShardingRequired = 4011The session requires sharding for this bot to connect.
UnknownError = 4000Unknown error occurred. The connection may be retried.
UnknownOpcode = 4001An invalid gateway opcode was sent.