GlobalProxySelection::Select Property
Gets or sets the global HTTP proxy.
Assembly: System (in System.dll)
public: static property IWebProxy^ Select { IWebProxy^ get (); void set (IWebProxy^ value); }
Property Value
Type: System.Net::IWebProxyAn IWebProxy that every call to HttpWebRequest::GetResponse uses.
| Exception | Condition |
|---|---|
| ArgumentNullException | The value specified for a set operation was nullptr. |
| SecurityException | The caller does not have permission for the requested operation. |
The Select property sets the proxy that all WebRequest instances use if the request supports proxies and no proxy is set explicitly using the Proxy property. Proxies are currently supported by FtpWebRequest and HttpWebRequest.
The following code example sets the Select property to the empty proxy.
#using <System.dll> using namespace System; using namespace System::Net; using namespace System::IO; int main() { // Create a request for the Web page at www.contoso.com. WebRequest^ request = WebRequest::Create( L"http://www.contoso.com" ); // This application doesn't want they proxy to be used so it sets // the global proxy to an empy proxy. IWebProxy^ myProxy = GlobalProxySelection::GetEmptyWebProxy(); // Get the response. WebResponse^ response = request->GetResponse(); // Display the response to the console. Stream^ stream = response->GetResponseStream(); StreamReader^ reader = gcnew StreamReader( stream ); Console::WriteLine( reader->ReadToEnd() ); // Clean up. reader->Close(); stream->Close(); response->Close(); return 0; }
- WebPermission
to get or set the global HTTP proxy. Associated enumeration: Unrestricted
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.