MonoTorrent magnetic link download not starting

I strongly believe that the MonoTorrent library can do this, but probably due to the lack of documentation that I could not get to work.

For starters, MonoTorrent seems to successfully download the original torrents using the following code: https://smuxi.im/wiki/monotorrent/Managing_Torrents

But due to the increasing popularity of Magnet Links, I would also like to use magnetic links . The "trick" of getting .torrent from them (for example, using those generated by ΞΌTorrent) does not work for me even when using the same code as above. It remains such that it is 1-3 peers per second, but does not make progress : Ms dos

StackOverflow's best question / answer on this topic was MonoTorrent - a link to a magnet on a Torrent file , but, unfortunately, the answer did not even correspond to the MonoTorrent constructors, which are as follows:

public TorrentManager(Torrent torrent, string savePath, TorrentSettings settings); public TorrentManager(MagnetLink magnetLink, string savePath, TorrentSettings settings, string torrentSave); public TorrentManager(Torrent torrent, string savePath, TorrentSettings settings, string baseDirectory); public TorrentManager(InfoHash infoHash, string savePath, TorrentSettings settings, string torrentSave, IList<RawTrackerTier> announces); 

Finally, I went to try another code, apparently you need to either pass it MagnetLink or InfoHash, so I gave it a command with InfoHash as follows:

 ClientEngine engine; TorrentManager manager; string savePath; public TorrentDownload(string savePath) { this.engine = new ClientEngine(new EngineSettings()); this.savePath = savePath; } public void DownloadMagnet(string hash) { manager = new TorrentManager(InfoHash.FromHex(hash), savePath, new TorrentSettings(), savePath, new List<RawTrackerTier>()); engine.Register(manager); manager.Start(); } 

Did I miss something that my download didn't even start ? No errors / failures

+7
c # magnet-uri torrent monotorrent
source share

No one has answered this question yet.

See similar questions:

4
MonoTorrent - Magnet link to a torrent file

or similar:

1204
What is the meaning of the Enlue [Flags] Enum attribute in C #?
151
How do BitTorrent magnetic links work?
4
C # downloading torrent using MonoTorrent
one
Download torrent from a magnetic link in MonoTorrent
one
Monotor parts are not available due to their level of protection.
one
Yahoo Pipes - preventing text from exiting node
one
Download Magnetic Link with Powershell 3
0
Adding a Magnetic Link to MonoTorrent
0
Python libtorrent creates blank magnetically linked torrent
0
Convert Torrent Magnet link to .torrent file using C #

All Articles