RatioMaster_source.RM.deployDefaultValues C# (CSharp) Method

deployDefaultValues() private method

private deployDefaultValues ( ) : void
return void
        internal void deployDefaultValues()
        {
            TorrentInfo torrent = new TorrentInfo(0, 0);
            trackerAddress.Text = torrent.tracker;
            shaHash.Text = torrent.hash;
            long num1 = torrent.uploadRate / 1024;
            uploadRate.Text = num1.ToString();
            long num2 = torrent.downloadRate / 1024;
            downloadRate.Text = num2.ToString();
            interval.Text = torrent.interval.ToString();
            comboProxyType.SelectedItem = "None";
        }