BF2Statistics.GamespyRedirectForm.IcsRadio_CheckedChanged C# (CSharp) Method

IcsRadio_CheckedChanged() private method

private IcsRadio_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void IcsRadio_CheckedChanged(object sender, EventArgs e)
        {
            // If we arent selected, return
            if (!IcsRadio.Checked) return;

            SelectedMode = RedirectMode.HostsIcsFile;
            descTextBox.Text = "Enabling this option will create and use the hosts.ics file. This is a better option "
                + "then using the system HOSTS file because Battlefield 2 will not check the hosts.ics file  for gamespy redirects";
        }