You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Glossary.md 2.5 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---
  2. uid: FAQ.Misc.Glossary
  3. title: Common Terminologies / Glossary
  4. ---
  5. # Glossary
  6. ## Common Types
  7. * A **Guild** ([IGuild]) is an isolated collection of users and
  8. channels, and are often referred to as "servers".
  9. - Example: [Discord API](https://discord.gg/jkrBmQR)
  10. * A **Channel** ([IChannel]) represents either a voice or text channel.
  11. - Example: #dotnet_discord-net
  12. [IGuild]: xref:Discord.IGuild
  13. [IChannel]: xref:Discord.IChannel
  14. ## Channel Types
  15. ### Message Channels
  16. * A **Text channel** ([ITextChannel]) is a message channel from a
  17. Guild.
  18. * A **DM channel** ([IDMChannel]) is a message channel from a DM.
  19. * A **Group channel** ([IGroupChannel]) is a message channel from a
  20. Group.
  21. - This is rarely used due to the bot's inability to join groups.
  22. * A **Private channel** ([IPrivateChannel]) is a DM or a Group.
  23. * A **Message channel** ([IMessageChannel]) can be any of the above.
  24. ### Misc Channels
  25. * A **Guild channel** ([IGuildChannel]) is a guild channel in a guild.
  26. - This can be any channels that may exist in a guild.
  27. * A **Voice channel** ([IVoiceChannel]) is a voice channel in a guild.
  28. * A **Category channel** ([ICategoryChannel]) (2.0+) is a category that
  29. holds one or more sub-channels.
  30. [IGuildChannel]: xref:Discord.IGuildChannel
  31. [IMessageChannel]: xref:Discord.IMessageChannel
  32. [ITextChannel]: xref:Discord.ITextChannel
  33. [IGroupChannel]: xref:Discord.IGroupChannel
  34. [IDMChannel]: xref:Discord.IDMChannel
  35. [IPrivateChannel]: xref:Discord.IPrivateChannel
  36. [IVoiceChannel]: xref:Discord.IVoiceChannel
  37. [ICategoryChannel]: xref:Discord.ICategoryChannel
  38. ## Emoji Types
  39. * An **Emote** ([Emote]) is a custom emote from a guild.
  40. - Example: `<:dotnet:232902710280716288>`
  41. * An **Emoji** ([Emoji]) is a Unicode emoji.
  42. - Example: `👍`
  43. [Emote]: xref:Discord.Emote
  44. [Emoji]: xref:Discord.Emoji
  45. ## Activity Types
  46. * A **Game** ([Game]) refers to a user's game activity.
  47. * A **Rich Presence** ([RichGame]) refers to a user's detailed
  48. gameplay status.
  49. - Visit [Rich Presence Intro] on Discord docs for more info.
  50. * A **Streaming Status** ([StreamingGame]) refers to user's activity
  51. for streaming on services such as Twitch.
  52. * A **Spotify Status** ([SpotifyGame]) (2.0+) refers to a user's
  53. activity for listening to a song on Spotify.
  54. [Game]: xref:Discord.Game
  55. [RichGame]: xref:Discord.RichGame
  56. [StreamingGame]: xref:Discord.StreamingGame
  57. [SpotifyGame]: xref:Discord.SpotifyGame
  58. [Rich Presence Intro]: https://discordapp.com/developers/docs/rich-presence/best-practices