NetCord
NetCord copied to clipboard
The modern and fully customizable C# Discord library.
### Description # Overview > What is the purpose of this conceptualization? The *guides* are essentially the key informative area of the documentation for NetCord (C# library for DIscord's Api)....
### Description Here is how you would currently write a minimal API style bot in F#: ```cs let builder = Host.CreateApplicationBuilder() builder.Services .AddApplicationCommands() .AddDiscordGateway() |> ignore let host = builder.Build()...
### Description Perhaps I have missed it on the documentation but do we have a way of accessing a cancellation token? Perhaps expires after 3 seconds or 15minutes if its...
### Description After I finish music playback, I attempt to disconnect the bot from the voice channel using the following code: ` await voiceClient.CloseAsync();` ` voiceClient.Dispose();` However, the bot does...
This will be somewhat gradual in terms of commits, so I can edit and re-check my work in-between.
### Description is there somethig like netcord ui? for razorpages
### Description This [change](https://github.com/NetCordDev/NetCord/commit/bab6e2f13ea1d75220532525e71ba07d3472793c#diff-606e4c46c1a935d4ed5e2f0c5b96f6700b311f240fe151abc996e44ed29bfd51) has broken the ability to register slash commands using the `SlashCommandAttribute` on a per guild basis. I currently follow this [guidance in your docs](https://netcord.dev/guides/basic-concepts/http-interactions.html) alongside custom...