Url Constructor (String)C# API
Initialises a new instance of the Url class, from the specified urlText.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public Url(
	string urlText
)

Parameters

urlText
Type: System String
A string representation of a URL.
Examples

The following example demonstrates creating a Url from a string.
// This will have the default HTTP port (80)
Url url = new Url("http://www.myCompany.co.uk/index.php");
See Also