共用方式為


GlobalProxySelection.GetEmptyWebProxy 方法

定義

傳回空的 Proxy 執行個體。

public:
 static System::Net::IWebProxy ^ GetEmptyWebProxy();
public static System.Net.IWebProxy GetEmptyWebProxy();
static member GetEmptyWebProxy : unit -> System.Net.IWebProxy
Public Shared Function GetEmptyWebProxy () As IWebProxy

傳回

不包含資訊的 IWebProxy

範例

下列程式代碼範例會 WebRequest 建立不使用 Proxy 的實例。

using System;
using System.Net;
using System.IO;
namespace Examples.Http
{
    public class TestGlobalProxySelection
    {
        public static void Main()
        {
            // Create a request for the Web page at www.contoso.com.
            WebRequest request = WebRequest.Create("http://www.contoso.com");
            // This application doesn't want the proxy to be used so it sets
            // the global proxy to an empty proxy.
            IWebProxy myProxy = GlobalProxySelection.GetEmptyWebProxy();
            GlobalProxySelection.Select = myProxy;
            // Get the response.
            WebResponse response = request.GetResponse();
            // Display the response to the console.
            Stream stream = response.GetResponseStream();
            StreamReader reader = new StreamReader(stream);
            Console.WriteLine(reader.ReadToEnd());
            // Clean up.
            reader.Close();
            stream.Close();
            response.Close();
        }
    }
}

備註

方法 GetEmptyWebProxy 會傳回空白 IWebProxy 實例,指出不會使用 Proxy 來存取因特網資源。

您可以指派null給 屬性等WebClient.Proxy成員,而不是呼叫 GetEmptyWebProxy 方法,這會指定代表 對象與遠端伺服器通訊的 WebClient Proxy。

適用於