示例#1
0
        /* Constructor */
        /// <summary>
        /// Initializes a new instance of the <see cref="TcpServer" /> class.
        /// </summary>
        public TcpServer(int port = 60606)
        {
            this.port = port;
            torrentClient = new TorrentsData();

            this.TorrentAdded += AddTorrent;
            this.TorrentRemoved += RemoveTorrent;
        }
示例#2
0
        /* Constructor */

        /// <summary>
        /// Initializes a new instance of the <see cref="TcpServer" /> class.
        /// </summary>
        public TcpServer(int port = 60606)
        {
            this.port     = port;
            torrentClient = new TorrentsData();

            this.TorrentAdded   += AddTorrent;
            this.TorrentRemoved += RemoveTorrent;
        }