UriBuilder Constructor (String, String, Int32, String)
Silverlight
Initializes a new instance of the UriBuilder class with the specified scheme, host, port number, and path.
Namespace: System
Assembly: System (in System.dll)
Parameters
- scheme
- Type: System.String
An Internet access protocol.
- host
- Type: System.String
A DNS-style domain name or IP address.
- port
- Type: System.Int32
An IP port number for the service.
- pathValue
- Type: System.String
The path to the Internet resource.
| Exception | Condition |
|---|---|
| ArgumentException | scheme is not a legal scheme name. |
| ArgumentOutOfRangeException | port 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, the Port property set to portNumber and the Path property set to pathValue.
The following example creates a UriBuilder instance that contains the URI http://www.contoso.com:8080/index.htm.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.