Url Reference Property C# API
Gets the reference (also known as the fragment ID) of this Url.

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

public string Reference { get; }

Field Value

The reference of this Url.
Remarks

The reference follows a # at the end of a URL, and is often used to refer to a specific location in a HTML document.

e.g. http://www.myCompany.co.uk/index.php#chapter3

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

See Also