UriBuilder Constructor (String, String, Int32)

UriBuilder Constructor (String, String, Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new instance of the UriBuilder class with the specified scheme, host, and port.

Namespace:  System
Assembly:  System (in System.dll)

public UriBuilder(
	string scheme,
	string host,
	int portNumber
)

Parameters

scheme
Type: System.String
An Internet access protocol.
host
Type: System.String
A DNS-style domain name or IP address.
portNumber
Type: System.Int32
An IP port number for the service.

ExceptionCondition
ArgumentException

scheme is not a legal scheme name.

ArgumentOutOfRangeException

portNumber is less than 0 or greater than 65,535.

The UriBuilder instance is initialized with the Scheme property set to schemeName, the Host property set to hostName, and the Port property set to portNumber. The Path property is set to the slash character (/).

The following example creates a UriBuilder instance that contains the URI http://www.contoso.com:8080/.


      UriBuilder myUri = new UriBuilder("http","www.contoso.com",8080);



Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft