Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 374 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 374 Bytes

DelugeWebClient

Deluge WebUI RPC Client in C#

Quick Sample

 var delugeUrl = https://192.168.88.10:8112/json;
 var delugePassword = "123456";

  using (DelugeWebClient client = new DelugeWebClient(delugeUrl))
  {
      await client.LoginAsync(delugePassword);
      var r = await client.GetTorrentsStatusAsync();
      await client.LogoutAsync();
  }