PawSharp.Interactivity 0.11.0-alpha.1

This is a prerelease version of PawSharp.Interactivity.
dotnet add package PawSharp.Interactivity --version 0.11.0-alpha.1
                    
NuGet\Install-Package PawSharp.Interactivity -Version 0.11.0-alpha.1
                    
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="PawSharp.Interactivity" Version="0.11.0-alpha.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PawSharp.Interactivity" Version="0.11.0-alpha.1" />
                    
Directory.Packages.props
<PackageReference Include="PawSharp.Interactivity" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PawSharp.Interactivity --version 0.11.0-alpha.1
                    
#r "nuget: PawSharp.Interactivity, 0.11.0-alpha.1"
                    
#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.
#:package PawSharp.Interactivity@0.11.0-alpha.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PawSharp.Interactivity&version=0.11.0-alpha.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=PawSharp.Interactivity&version=0.11.0-alpha.1&prerelease
                    
Install as a Cake Tool

PawSharp.Interactivity

Interactive command framework for PawSharp Discord library.

Features

  • Paginated messages with reaction controls
  • Reaction waiting and collection
  • Message polling
  • Interactive command flows

Installation

dotnet add package PawSharp.Interactivity

Usage

using PawSharp.Interactivity.Extensions;

// Enable interactivity
var interactivity = client.UseInteractivity(new InteractivityConfiguration
{
    Timeout = TimeSpan.FromMinutes(5)
});

// Send paginated message
var pages = interactivity.GeneratePagesInEmbed(longText);
await channel.SendPaginatedMessageAsync(user, pages);

// Wait for reaction
var result = await message.WaitForReactionAsync(user, "👍");
if (!result.TimedOut)
{
    // User reacted with thumbs up
}

// Create poll
await message.CreatePollAsync("What's your favorite color?",
    new[] { "Red", "Blue", "Green" });
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.11.0-alpha.1 30 3/10/2026
0.10.0-alpha.3 40 3/8/2026
0.7.0-alpha.1 40 3/6/2026
0.6.1-alpha1 36 3/4/2026
0.6.0-alpha1 42 2/25/2026
0.5.0-alpha9 53 1/15/2026
0.5.0-alpha8 55 1/14/2026
0.5.0-alpha13 43 2/22/2026
0.5.0-alpha12 47 2/22/2026
0.5.0-alpha11 46 2/20/2026