Exemplo n.º 1
0
        public void ChangeProxy(ProxyProfile profile)
        {
            using (ProxyHandler handler = new ProxyHandler())
            {
                if (profile.AutomaticScript == "" || profile.AutomaticScript == null)
                {
                    handler.ChangeProxy(profile.ProxyAddress + ":" + profile.Port);
                }
                else
                {
                    handler.ChangeProxy(profile.ProxyAddress + ":" + profile.Port, profile.AutomaticScript);
                }
            }

            UpdatePropertyCheckMarks();
        }