.NET Framework Class Library
WebProxy Constructor (String, Int32)
Initializes a new instance of the WebProxy class with the specified host and port number.
Assembly: System (in System.dll)
Syntax
Visual Basic
Public Sub New ( _ Host As String, _ Port As Integer _ )
C#
public WebProxy( string Host, int Port )
Visual C++
public: WebProxy( String^ Host, int Port )
F#
new : Host:string * Port:int -> WebProxy
Parameters
- Host
- Type: System.String
The name of the proxy host.
- Port
- Type: System.Int32
The port number on Host to use.
Exceptions
| Exception | Condition |
|---|---|
| UriFormatException |
The URI formed by combining Host and Port is not a valid URI. |
Remarks
The WebProxy instance is initialized with the Address property set to a Uri instance of the form http:// Host : Port.
Examples
The following code example demonstrates calling this constructor.
Visual Basic
Public Shared Function CreateProxyWithHostAndPort() As WebProxy Return New WebProxy("http://contoso", 80) End Function
C#
public static WebProxy CreateProxyWithHostAndPort() { return new WebProxy("http://contoso", 80); }
Visual C++
WebProxy^ CreateProxyWithHostAndPort()
{
return gcnew WebProxy( "http://contoso",80 );
}
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
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.
See Also