TelegramCommands 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TelegramCommands --version 1.0.0
NuGet\Install-Package TelegramCommands -Version 1.0.0
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="TelegramCommands" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TelegramCommands --version 1.0.0
#r "nuget: TelegramCommands, 1.0.0"
#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 TelegramCommands as a Cake Addin
#addin nuget:?package=TelegramCommands&version=1.0.0

// Install TelegramCommands as a Cake Tool
#tool nuget:?package=TelegramCommands&version=1.0.0

Telegram commands.

Extension of Telegram.Bot can help you to make your commands faster. New namespace Telegram.Bot.Commands contains classes and interface that can execute your command.

Quick start

using System;
using Telegram.Bot;
using Telegram.Bot.Commands;

namespace QuickStart
{
    public static class Program
    {
        static ITelegramBotClient botClient;

        static void Main()
        {
            botClient = new TelegramBotClient("YOUR_TOKEN_HERE");

            var service = new CommandsService(botClient); //Initlize instance service.

            service.RegisterCommands<Commands>(); //Register your commands.
            service.UploadCommands().GetAwaiter().GetResult(); //Upload your commands to Telegram.

            botClient.StartReceiving();

            Console.WriteLine("Press any key to exit");
            Console.ReadKey();

            botClient.StopReceiving();
        }
    }

    public class Commands : CommandsBase
    {
        //   Command name   Descripion
        [Command("Ping", "Replies pong")]
        public async void Ping()
        {
            var client = Context.ContextClient;//Get ITelegramBotClient via Context

            await client.SendTextMessageAsync(Context.Chat, "Pong");//Send message.
        }
    }
}
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 netcoreapp3.1 is compatible. 
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
1.3.0 470 7/8/2021
1.2.1 307 6/9/2021
1.2.0 298 6/8/2021
1.0.0 304 6/7/2021