Exemplo n.º 1
0
 public void CreateTorrentFile(string fileName)
 {
     if (string.IsNullOrEmpty(fileName))
     {
         throw new ArgumentNullException("TorrentManager:TorrentFileName");
     }
     File            = new TorrentFile(fileName);
     Info            = new TorrentInfo();
     Info.Tracker    = File.Announce;
     Info.TrackerUri = new Uri(File.Announce);
     Info.Hash       = File.InfoHash;
     IsScrapeUpdated = false;
     HasInitialPeers = false;
 }
Exemplo n.º 2
0
 public TorrentManager()
 {
     Info = new TorrentInfo();
 }