Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
|
10 years ago | |
---|---|---|
src | 10 years ago | |
test/Discord.Net.Tests | 10 years ago | |
.gitattributes | 10 years ago | |
.gitignore | 10 years ago | |
Discord.Net.sln | 10 years ago | |
LICENSE | 10 years ago | |
README.md | 10 years ago | |
global.json | 10 years ago |
An unofficial .Net API Wrapper for the Discord client (http://discordapp.com).
Join the discussion for this library and other API wrappers at https://discord.gg/0SBTUU1wZTV9JAsL.
The Discord API is still in active development, meaning this library may break at any time without notice.
Discord.Net itself is also in early development so several functions may be unstable or not work at all.
var client = new DiscordClient();
client.MessageCreated += (s, e) =>
{
client.SendMessage(e.Message.ChannelId, e.Message.Text);
};
await client.Connect("discordtest@email.com", "Password123");
await client.AcceptInvite("channel-invite-code");