This documentation is archived and is not being maintained.
WebProxy Constructor (Uri^)
.NET Framework (current version)
Initializes a new instance of the WebProxy class from the specified Uri instance.
Namespace:
System.NetAssembly:
System (in System.dll)
public:
WebProxy(
Uri^ Address
)
Parameters
- Address
-
Type:
System::Uri^
A Uri instance that contains the address of the proxy server.
The WebProxy instance is initialized with the Address property set to the Address parameter.
The following code example demonstrates calling this constructor.
WebProxy^ CreateProxyWithExampleAddress()
{
return gcnew WebProxy( gcnew Uri( "http://contoso" ) );
}
.NET Framework
Available since 1.1
Return to top