Discord.Net.Labs.Rest 2.4.6

Suggested Alternatives

Discord.Net.Rest

There is a newer version of this package available.
See the version list below for details.
dotnet add package Discord.Net.Labs.Rest --version 2.4.6
NuGet\Install-Package Discord.Net.Labs.Rest -Version 2.4.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Discord.Net.Labs.Rest" Version="2.4.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Discord.Net.Labs.Rest --version 2.4.6
#r "nuget: Discord.Net.Labs.Rest, 2.4.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Discord.Net.Labs.Rest as a Cake Addin
#addin nuget:?package=Discord.Net.Labs.Rest&version=2.4.6

// Install Discord.Net.Labs.Rest as a Cake Tool
#tool nuget:?package=Discord.Net.Labs.Rest&version=2.4.6

Discord.Net Labs

NuGet

Join our Discord server for support using labs

This repo is a custom fork of Discord.Net that introduces the newest features of discord for testing and experimenting. Nothing here is guaranteed to work but you are more than welcome to submit bugs in the issues tabs

Known issues

Labs will not work with normal package of Playwo's InteractivityAddon. The reason is that his package depends on the base discord.net lib. You can instead use the InteractivityAddon.Labs package which implements some of the features added in Discord.Net-Labs.

How to use

Setting up labs in your project is really simple, here's how to do it:

  1. Remove Discord.Net from your project
  2. Add Discord.Net Labs nuget to your project
  3. Enjoy!

Listening for interactions

// Subscribe to the InteractionCreated event
client.InteractionCreated += Client_InteractionCreated;

...
private async Task Client_InteractionCreated(SocketInteraction arg)
{
  switch (arg.Type) // We want to check the type of this interaction
  {
    //Slash commands
    case InteractionType.ApplicationCommand:
      await MySlashCommandHandler(arg);
      break;
    //Button clicks/selection dropdowns
    case InteractionType.MessageComponent:
      await MyMessageComponentHandler(arg);
      break;
    //Unused
    case InteractionType.Ping:
      break;
    //Unknown/Unsupported
    default:
      Console.WriteLine("Unsupported interaction type: " + arg.Type);
      break;
  }
}

Handling button clicks and selection dropdowns

private async Task MyMessageComponentHandler(SocketInteraction arg)
{
    // Parse the arg
    var parsedArg = (SocketMessageComponent) arg;
    // Get the custom ID 
    var customId = parsedArg.Data.CustomId;
    // Get the user
    var user = (SocketGuildUser) arg.User;
    // Get the guild
    var guild = user.Guild;
    
    // Respond with the update message response type. This edits the original message if you have set AlwaysAcknowledgeInteractions to false.
    // You can also use "ephemeral" so that only the original user of the interaction sees the message
    await parsedArg.RespondAsync($"Clicked {parsedArg.Data.CustomId}!", type: InteractionResponseType.UpdateMessage, ephemeral: true);
    
    // You can also followup with a second message
    await parsedArg.FollowupAsync($"Clicked {parsedArg.Data.CustomId}!", type: InteractionResponseType.ChannelMessageWithSource, ephemeral: true);
    
    //If you are using selection dropdowns, you can get the selected label and values using these:
    var selectedLabel = ((SelectMenu) parsedArg.Message.Components.First().Components.First()).Options.FirstOrDefault(x => x.Value == parsedArg.Data.Values.FirstOrDefault())?.Label;
    var selectedValue = parsedArg.Data.Values.First();
}

Note: The example above assumes that the selection dropdown is expecting only 1 returned value, if you configured your dropdown for multiple values, you'll need to modify the code slightly.

Sending messages with buttons

Theres a new field in all SendMessageAsync functions that takes in a MessageComponent, you can use it like so:

var builder = new ComponentBuilder().WithButton("Hello!", customId: "id_1", ButtonStyle.Primary, row: 0);
await Context.Channel.SendMessageAsync("Test buttons!", component: builder.Build());

Sending messages with selection dropdowns

Theres a new field in all SendMessageAsync functions that takes in a MessageComponent, you can use it like so:

var builder = new ComponentBuilder()
  .WithSelectMenu(new SelectMenuBuilder()
  .WithCustomId("id_2")
  .WithLabel("Select menu!")
  .WithPlaceholder("This is a placeholder")
  .WithOptions(new List<SelectMenuOptionBuilder>()
  {
    new SelectMenuOptionBuilder()
      .WithLabel("Option A")
      .WithEmote(Emote.Parse("<:evanpog:810017136814194698>"))
      .WithDescription("Evan pog champ")
      .WithValue("value1"),
    new SelectMenuOptionBuilder()
      .WithLabel("Option B")
      .WithDescription("Option B is poggers")
      .WithValue("value2")
  }));
await Context.Channel.SendMessageAsync("Test selection!", component: builder.Build());

Note: You can only have 5 buttons per row and 5 rows per message. If a row contains a selection dropdown it cannot contain any buttons.

Slash commands

Slash command example how to's can be found here. If you want to read some code using slash commands, you can do that here

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Discord.Net.Labs.Rest:

Package Downloads
Discord.Net.Labs.WebSocket

A core Discord.Net Labs library containing the WebSocket client and models.

Discord.Net.Labs

An experimental fork of Discord.NET that adds all the new discord features to play around with! This metapackage includes all of the optional Discord.Net Labs components.

Discord.Net.Labs.Webhook

A core Discord.Net Labs library containing the Webhook client and models.

Discord.Net.Labs.Interactions

A Discord.Net Labs extension adding support for Application Commands.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.6.1 25,759 12/24/2021
3.6.0 1,644 12/24/2021
3.5.0 3,291 12/15/2021
3.4.9 6,107 12/6/2021
3.4.8 6,293 12/4/2021
3.4.7 4,209 11/28/2021
3.4.6 1,338 11/27/2021
3.4.5 1,181 11/27/2021
3.4.4 1,246 11/27/2021
3.4.3 1,242 11/27/2021
3.4.2 3,702 11/26/2021
3.4.1 3,004 11/26/2021
3.4.0 3,072 11/26/2021
3.3.3 2,006 11/23/2021
3.3.2 1,836 11/21/2021
3.3.1 2,007 11/21/2021
3.3.0 2,303 11/19/2021
3.2.0 3,150 11/9/2021
3.1.7 4,379 10/20/2021
3.1.6 2,239 10/15/2021
3.1.5 1,176 10/15/2021
3.1.4 3,418 10/13/2021
3.1.2 2,303 10/12/2021
3.1.1 3,769 9/23/2021
3.1.0 2,458 9/21/2021
3.0.3 1,724 9/15/2021
3.0.2 3,859 9/13/2021
3.0.1 5,012 8/25/2021
3.0.1-pre 1,829 8/8/2021
3.0.0 2,871 8/24/2021
3.0.0-pre 470 8/5/2021
2.4.6 3,811 7/17/2021
2.4.5 2,441 7/11/2021
2.4.4 961 7/7/2021
2.4.3 3,153 7/6/2021
2.4.2 936 7/5/2021
2.4.1 643 7/5/2021
2.4.0 3,141 7/3/2021
2.3.9-pre 506 6/1/2021
2.3.9-dev 392 7/2/2021
2.3.8 2,057 5/30/2021
2.3.7 1,316 5/30/2021
2.3.6 2,140 5/29/2021
2.3.6-dev 371 5/29/2021
2.3.5 1,332 5/28/2021
2.3.4 874 5/28/2021
2.3.3 575 5/28/2021
2.3.1 1,520 5/27/2021