Url builder constructor.

Namespace: MonoSoftware.Web
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public UrlBuilder(
	string scheme,
	string host,
	int port,
	string pathValue
)
Visual Basic
Public Sub New ( 
	scheme As String,
	host As String,
	port As Integer,
	pathValue As String
)
Visual C++
public:
UrlBuilder(
	String^ scheme, 
	String^ host, 
	int port, 
	String^ pathValue
)
F#
new : 
        scheme : string * 
        host : string * 
        port : int * 
        pathValue : string -> UrlBuilder

Parameters

scheme
Type: System..::..String
Scheme
host
Type: System..::..String
Host
port
Type: System..::..Int32
Port
pathValue
Type: System..::..String
Path value

See Also