Click here to Skip to main content
Click here to Skip to main content
Articles » Languages » C# » Applications » Downloads
 

SwitchNetConfig - Laptop users, quickly switch network and proxy configuration in different places

By , 6 May 2004
 
using System;

namespace SwitchNetConfig
{
	/// <summary>
	/// Proxy setting for Internet Explorer
	/// </summary>
	public class IEProfile
	{
		#region Variables

		public bool UseProxy = false;
		public string ProxyName = string.Empty;
		public bool BypassLocal = false;
		public string BypassAddresses = string.Empty;

		#endregion

		#region Constructors

		public IEProfile() {}

		public IEProfile( bool useProxy, string proxyName, bool bypassLocal, string bypassAddresses )
		{
			UseProxy = useProxy;
			ProxyName = proxyName;
			BypassLocal = bypassLocal;
			BypassAddresses = bypassAddresses;
		}

		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Omar Al Zabir
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom
Member

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 7 May 2004
Article Copyright 2004 by Omar Al Zabir
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid