Initialises a new instance of the Url class, with the specified protocol, host and path.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- protocol
- Type: Facilita.Web Protocol
The protocol to use.
- host
- Type: System String
A dotted IP address or host name.
- path
- Type: System String
The path to be appended to the URL.
Examples
// This will have the default HTTP port (80) Url url = new Url(Protocol.HTTP, "www.myCompany.co.uk", "index.php");
See Also