WebRequest.Proxy Property (System.Net)

WebRequest.Proxy Property (System.Net)

The following example displays the current network proxy address and allows the user to assign a new network proxy address and port number.

C#
C++
VB
			// Create a new request to the mentioned URL.				
			WebRequest myWebRequest=WebRequest.Create("http://www.contoso.com");

			WebProxy myProxy=new WebProxy();
			// Obtain the Proxy Prperty of the  Default browser.  
			myProxy=(WebProxy)myWebRequest.Proxy;

			// Print myProxy address to the console.
			Console.WriteLine("\nThe actual default Proxy settings are {0}",myProxy.Address);
         try
			{
				Console.WriteLine("\nPlease enter the new Proxy Address to be set ");
				Console.WriteLine("The format of the address should be http://proxyUriAddress:portaddress");
				Console.WriteLine("Example:http://proxyadress.com:8080");
				string proxyAddress;
				proxyAddress =Console.ReadLine();

				if(proxyAddress.Length==0)
				{
					myWebRequest.Proxy=myProxy;
				}
				else
				{
					Console.WriteLine("\nPlease enter the Credentials");
					Console.WriteLine("Username:");
					string username;
					username =Console.ReadLine();
					Console.WriteLine("\nPassword:");
					string password;
					password =Console.ReadLine();

					// Create a new Uri object.
					Uri newUri=new Uri(proxyAddress);

					// Associate the new Uri object to the myProxy object.
					myProxy.Address=newUri;

					// Create a NetworkCredential object and is assign to the Credentials property of the Proxy object.
					myProxy.Credentials=new NetworkCredential(username,password);
					myWebRequest.Proxy=myProxy;
				}
				Console.WriteLine("\nThe Address of the  new Proxy settings are {0}",myProxy.Address);
				WebResponse myWebResponse=myWebRequest.GetResponse();

				// Print the  HTML contents of the page to the console.
				Stream streamResponse=myWebResponse.GetResponseStream();
				StreamReader streamRead = new StreamReader( streamResponse );
				Char[] readBuff = new Char[256];
				int count = streamRead.Read( readBuff, 0, 256 );
				Console.WriteLine("\nThe contents of the Html pages are :");	
				while (count > 0) 
				{
					String outputData = new String(readBuff, 0, count);
					Console.Write(outputData);
					count = streamRead.Read(readBuff, 0, 256);
				}

				// Close the Stream object.
				streamResponse.Close();
				streamRead.Close();

				// Release the HttpWebResponse Resource.
				myWebResponse.Close();
				Console.WriteLine("\nPress any key to continue.........");
				Console.Read();				
			}
			catch(UriFormatException e)
			{
				Console.WriteLine("\nUriFormatException is thrown.Message is {0}",e.Message);
				Console.WriteLine("\nThe format of the myProxy address you entered is invalid");
				Console.WriteLine("\nPress any key to continue.........");
				Console.Read();
			}
posted on 2012-12-13 15:45  lexus 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/lexus/archive/2012/12/13/2816496.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值