UriBuilder Constructor (String, String, Int32)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

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

Syntax

'Declaration
Public Sub New ( _
    scheme As String, _
    host As String, _
    portNumber As Integer _
)
public UriBuilder(
    string scheme,
    string host,
    int portNumber
)

Parameters

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

Exceptions

Exception Condition
ArgumentException

scheme is not a legal scheme name.

ArgumentOutOfRangeException

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

Remarks

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 (/).

Examples

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

  Dim myUri As New UriBuilder("http", "www.contoso.com", 8080)

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

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.