Transmission.API.RPC.NET 2.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Transmission.API.RPC.NET --version 2.2.0
                    
NuGet\Install-Package Transmission.API.RPC.NET -Version 2.2.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="Transmission.API.RPC.NET" Version="2.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Transmission.API.RPC.NET" Version="2.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Transmission.API.RPC.NET" />
                    
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 Transmission.API.RPC.NET --version 2.2.0
                    
#r "nuget: Transmission.API.RPC.NET, 2.2.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.
#:package Transmission.API.RPC.NET@2.2.0
                    
#: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=Transmission.API.RPC.NET&version=2.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Transmission.API.RPC.NET&version=2.2.0
                    
Install as a Cake Tool

Transmission-RPC-API

Official Transmission RPC specs

C# implementation of the Transmission RPC API.

Command Not Implemented Implemented
torrent-start x
torrent-start-now x
torrent-stop x
torrent-verify x
torrent-reannounce x
torrent-set x
torrent-get x
torrent-add x
torrent-remove x
torrent-set-location x
torrent-rename-path x
session-set x
session-get x
session-stats x
blocklist-update x
port-test x
session-close x
queue-move-top x
queue-move-up x
queue-move-down x
queue-move-bottom x
free-space x

How to use

Install Nuget Package: PM> Install-Package Transmission.API.RPC.NET

using Transmission.API.RPC.Entity;

// URL might look like "schema://host:port/transmission/rpc" for example "https://website.com:9091/transmission/rpc"
var client = new Client("URL", "PARAM_SESSION_ID", "PARAM_LOGIN", "PARAM_PASS");

var sessionInfo = client.GetSessionInformation();
var allTorrents = client.TorrentGet(TorrentFields.ALL_FIELDS);
//<...>
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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.
  • net10.0

    • No dependencies.

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
4.1.6 104 2/15/2026
4.1.5 97 2/13/2026
4.1.4 98 2/12/2026
4.1.3 97 2/7/2026
4.1.2 95 2/6/2026
4.1.1 93 2/5/2026
4.1.0 97 2/5/2026
2.2.2 96 2/3/2026
2.2.0 102 2/2/2026

Porting the project to .Net 10. Using System.Text.Json instead of Newtonsoft Json.NET. Support for server version 4.1.0