Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
|
9 years ago | |
---|---|---|
Discord.Net | 9 years ago | |
Discord.Net.Tests | 9 years ago | |
.gitattributes | 9 years ago | |
.gitignore | 9 years ago | |
Discord.Net.sln | 9 years ago | |
LICENSE | 10 years ago | |
README.md | 9 years ago |
A .Net API Wrapper for the Discord client (http://discordapp.com).
The Discord API is still in active development, meaning this library may break at any time without notice.
Discord.Net 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");