We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19568b commit ebcb740Copy full SHA for ebcb740
BencodeNET/Parsing/BencodeParser.cs
@@ -5,6 +5,7 @@
5
using BencodeNET.Exceptions;
6
using BencodeNET.IO;
7
using BencodeNET.Objects;
8
+using BencodeNET.Torrents;
9
10
namespace BencodeNET.Parsing
11
{
@@ -46,7 +47,8 @@ public BencodeParser(Encoding encoding = null)
46
47
new BNumberParser(),
48
new BStringParser(_encoding),
49
new BListParser(this),
- new BDictionaryParser(this)
50
+ new BDictionaryParser(this),
51
+ new TorrentParser(this)
52
};
53
}
54
0 commit comments