Url Path Property C# API
Gets the path component of this Url, excluding the first / after the hostname.

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

public string Path { get; }

Field Value

The path component of this Url, or an empty string if no path is present.
Remarks

Note Note
A Url object is immutable - that is, it cannot be changed after it has been created. To modify the path, call WithPath(String) to get a new Url object with the required modification.
See Also