WebProxy Constructor (Uri^, Boolean, array<String^>^)
.NET Framework (current version)
Initializes a new instance of the WebProxy class with the specified Uri instance, bypass setting, and list of URIs to bypass.
Assembly: System (in System.dll)
Parameters
- Address
-
Type:
System::Uri^
A Uri instance that contains the address of the proxy server.
- BypassOnLocal
-
Type:
System::Boolean
true to bypass the proxy for local addresses; otherwise, false.
- BypassList
-
Type:
array<System::String^>^
An array of regular expression strings that contains the URIs of the servers to bypass.
The WebProxy instance is initialized with the Address property set to Address, the BypassProxyOnLocal property set to BypassOnLocal, and the BypassList property set to BypassList.
The following code example demonstrates calling this constructor.
.NET Framework
Available since 1.1
Available since 1.1
Show: