UriBuilder Constructor (String, String)

UriBuilder Constructor (String, String)

[ 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 and host.

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

public UriBuilder(
	string schemeName,
	string hostName
)

Parameters

schemeName
Type: System.String
An Internet access protocol.
hostName
Type: System.String
A DNS-style domain name or IP address.

ExceptionCondition
ArgumentException

schemeName is not a legal scheme name.

The UriBuilder instance is initialized with the Scheme property set to schemeName and the Host property set to hostName. Port is initialized to the value -1 to indicate the default port for the scheme should be used, and the Path property is set to the slash character (/).

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


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

   outputBlock.Text += "Uri: ";
   outputBlock.Text += myUri.ToString();
   outputBlock.Text += "\n";



Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft