Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
|
10 years ago | |
---|---|---|
Discord.Net | 10 years ago | |
Discord.Net.Tests | 10 years ago | |
.gitignore | 10 years ago | |
Discord.Net.sln | 10 years ago | |
LICENSE | 10 years ago | |
README.md | 10 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");
Due to current Discord restrictions, private messages are blocked unless both the sender and recipient are members of the same server.