Url ToString Method (Boolean, Boolean)C# API
Returns a string representation of this Url, specifying whether to percent-encode the path and include the port component of the URL if it is a standard port.

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

public string ToString(
	bool encodedPath,
	bool outputStandardPorts
)

Parameters

encodedPath
Type: System Boolean
true if the path component of the URL should be percent-encoded.
outputStandardPorts
Type: System Boolean
true if the port component of the URL should be included even if it is a standard port for this Url object's protocol.

Return Value

A string representation of this Url.
See Also