Enum GatewayOpcode
Contains all valid opcodes sent/received by the client.
public enum GatewayOpcode : byte
Fields
Dispatch = 0
An event was dispatched.
Heartbeat = 1
Fired periodically by the client to keep the connection alive.
HeartbeatACK = 11
Sent in response to receiving a heartbeat to acknowledge that it has been received.
Hello = 10
Sent immediately after connecting, contains the
heartbeat_interval
to use.Identify = 2
Starts a new session during the initial handshake.
InvalidSession = 9
The session has been invalidated. You should reconnect and identify/resume accordingly.
PresenceUpdate = 3
Update the client's presence.
Reconnect = 7
You should attempt to reconnect and resume immediately.
RequestGuildUsers = 8
Request information about offline guild members in a large guild.
Resume = 6
Resume a previous session that was disconnected.
VoiceStateUpdate = 4
Used to join/leave or move between voice channels.