Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UriBuilder Constructor (String^, String^)

 

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.

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 = gcnew UriBuilder(  "http", "www.contoso.com" );

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft